twbs--bootstrap/less/type.less

244 lines
3.6 KiB
Plaintext
Raw Normal View History

// Typography.less
// Headings, body text, lists, code, and more for a versatile and durable typography system
// ----------------------------------------------------------------------------------------
2011-05-04 01:09:25 +00:00
2011-08-17 05:58:01 +00:00
// BODY TEXT
// ---------
2011-05-04 01:09:25 +00:00
p {
margin: 0 0 @baseLineHeight / 2;
font-family: @baseFontFamily;
font-size: @baseFontSize;
line-height: @baseLineHeight;
2011-05-04 01:09:25 +00:00
small {
font-size: @baseFontSize - 2;
color: @grayLight;
2011-05-04 01:09:25 +00:00
}
}
.lead {
margin-bottom: @baseLineHeight;
font-size: 20px;
font-weight: 200;
line-height: @baseLineHeight * 1.5;
}
2011-05-04 01:09:25 +00:00
2011-08-17 05:58:01 +00:00
// HEADINGS
// --------
2011-05-04 01:09:25 +00:00
h1, h2, h3, h4, h5, h6 {
margin: 0;
2011-06-30 00:10:53 +00:00
font-weight: bold;
color: @grayDark;
text-rendering: optimizelegibility; // Fix the character spacing for headings
2011-05-04 01:09:25 +00:00
small {
font-weight: normal;
color: @grayLight;
2011-05-04 01:09:25 +00:00
}
}
h1 {
font-size: 30px;
line-height: @baseLineHeight * 2;
2011-05-04 01:09:25 +00:00
small {
font-size: 18px;
}
}
h2 {
font-size: 24px;
line-height: @baseLineHeight * 2;
2011-05-04 01:09:25 +00:00
small {
font-size: 18px;
2011-05-04 01:09:25 +00:00
}
}
h3 {
line-height: @baseLineHeight * 1.5;
2011-05-04 01:09:25 +00:00
font-size: 18px;
small {
font-size: 14px;
}
}
h4, h5, h6 {
line-height: @baseLineHeight;
}
2011-05-04 01:09:25 +00:00
h4 {
font-size: 14px;
2011-05-04 01:09:25 +00:00
small {
font-size: 12px;
}
}
h5 {
font-size: 12px;
2011-05-04 01:09:25 +00:00
}
h6 {
font-size: 11px;
color: @grayLight;
2011-05-04 01:09:25 +00:00
text-transform: uppercase;
}
// Page header
.page-header {
padding-bottom: @baseLineHeight - 1;
margin: @baseLineHeight 0;
border-bottom: 1px solid @grayLighter;
}
.page-header h1 {
line-height: 1;
}
2011-05-04 01:09:25 +00:00
2012-01-12 20:30:36 +00:00
// LISTS
// -----
2011-05-04 01:09:25 +00:00
// Unordered and Ordered lists
ul, ol {
padding: 0;
margin: 0 0 @baseLineHeight / 2 25px;
2011-05-04 01:09:25 +00:00
}
ul ul,
ul ol,
ol ol,
ol ul {
margin-bottom: 0;
}
ul {
list-style: disc;
}
ol {
list-style: decimal;
}
li {
line-height: @baseLineHeight;
2011-05-04 01:09:25 +00:00
}
2012-02-07 18:29:45 +00:00
ul.unstyled,
ol.unstyled {
2011-05-04 01:09:25 +00:00
margin-left: 0;
list-style: none;
2011-05-04 01:09:25 +00:00
}
// Description Lists
dl {
margin-bottom: @baseLineHeight;
}
dt,
dd {
line-height: @baseLineHeight;
}
dt {
font-weight: bold;
}
dd {
margin-left: @baseLineHeight / 2;
2011-05-04 01:09:25 +00:00
}
// Horizontal layout (like forms)
dl.horizontal {
dt {
float: left;
clear: left;
width: 120px;
text-align: right;
}
dd {
margin-left: 130px;
}
&.horizontal-small {
dt { width: 50px; }
dd { margin-left: 60px; }
}
&.horizontal-normal {
// no additional styles needed
}
&.horizontal-large {
dt { width: 190px; }
dd { margin-left: 200px; }
}
}
2011-05-04 01:09:25 +00:00
2011-08-17 05:58:01 +00:00
// MISC
// ----
2011-05-04 01:09:25 +00:00
// Horizontal rules
hr {
margin: @baseLineHeight 0;
2011-05-04 01:09:25 +00:00
border: 0;
2012-02-11 07:59:00 +00:00
border-top: 1px solid @hrBorder;
2012-01-21 23:24:06 +00:00
border-bottom: 1px solid @white;
2011-05-04 01:09:25 +00:00
}
// Emphasis
strong {
font-weight: bold;
}
em {
font-style: italic;
}
.muted {
color: @grayLight;
2011-05-04 01:09:25 +00:00
}
// Abbreviations and acronyms
abbr[title] {
border-bottom: 1px dotted #ddd;
cursor: help;
}
abbr.initialism {
font-size: 90%;
text-transform: uppercase;
}
2011-05-04 01:09:25 +00:00
// Blockquotes
blockquote {
padding: 0 0 0 15px;
margin: 0 0 @baseLineHeight;
2012-01-21 23:24:06 +00:00
border-left: 5px solid @grayLighter;
2011-05-04 01:09:25 +00:00
p {
margin-bottom: 0;
2012-01-12 18:19:07 +00:00
#font > .shorthand(16px,300,@baseLineHeight * 1.25);
2011-05-04 01:09:25 +00:00
}
small {
2011-05-04 01:09:25 +00:00
display: block;
line-height: @baseLineHeight;
color: @grayLight;
2011-05-04 01:09:25 +00:00
&:before {
content: '\2014 \00A0';
}
}
// Float right with text-align: right
&.pull-right {
float: right;
padding-left: 0;
padding-right: 15px;
border-left: 0;
2012-01-21 23:24:06 +00:00
border-right: 5px solid @grayLighter;
p,
small {
text-align: right;
}
}
2011-05-04 01:09:25 +00:00
}
// Quotes
q:before,
q:after,
blockquote:before,
blockquote:after {
content: "";
}
2011-05-04 01:09:25 +00:00
// Addresses
address {
display: block;
margin-bottom: @baseLineHeight;
line-height: @baseLineHeight;
font-style: normal;
2011-05-04 01:09:25 +00:00
}
2012-01-26 22:53:35 +00:00
// Misc
small {
font-size: 100%;
}
cite {
font-style: normal;
}