mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
190 lines
No EOL
3 KiB
Text
190 lines
No EOL
3 KiB
Text
/* Typography.less
|
|
* Headings, body text, lists, code, and more for a versatile and durable typography system
|
|
* ---------------------------------------------------------------------------------------- */
|
|
|
|
|
|
// BODY TEXT
|
|
// ---------
|
|
|
|
p {
|
|
font-family: @baseFontFamily;
|
|
font-size: @baseFontSize;
|
|
line-height: @baseLineHeight;
|
|
margin-bottom: @baseLineHeight / 2;
|
|
small {
|
|
font-size: @baseFontSize - 2;
|
|
color: @grayLight;
|
|
}
|
|
}
|
|
|
|
|
|
// HEADINGS
|
|
// --------
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-weight: bold;
|
|
color: @grayDark;
|
|
small {
|
|
color: @grayLight;
|
|
}
|
|
}
|
|
h1 {
|
|
margin-bottom: @baseLineHeight;
|
|
font-size: 30px;
|
|
line-height: @baseLineHeight * 2;
|
|
small {
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
h2 {
|
|
font-size: 24px;
|
|
line-height: @baseLineHeight * 2;
|
|
small {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
h3 {
|
|
line-height: @baseLineHeight * 2;
|
|
font-size: 18px;
|
|
small {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
h4 {
|
|
font-size: 16px;
|
|
line-height: @baseLineHeight * 2;
|
|
small {
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
h5 {
|
|
font-size: 14px;
|
|
line-height: @baseLineHeight;
|
|
}
|
|
h6 {
|
|
font-size: 13px;
|
|
line-height: @baseLineHeight;
|
|
color: @grayLight;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
|
|
// COLORS
|
|
// ------
|
|
|
|
// Unordered and Ordered lists
|
|
ul, ol {
|
|
margin: 0 0 @baseLineHeight 25px;
|
|
}
|
|
ul ul,
|
|
ul ol,
|
|
ol ol,
|
|
ol ul {
|
|
margin-bottom: 0;
|
|
}
|
|
ul {
|
|
list-style: disc;
|
|
}
|
|
ol {
|
|
list-style: decimal;
|
|
}
|
|
li {
|
|
line-height: @baseLineHeight;
|
|
color: @gray;
|
|
}
|
|
ul.unstyled {
|
|
list-style: none;
|
|
margin-left: 0;
|
|
}
|
|
|
|
// Description Lists
|
|
dl {
|
|
margin-bottom: @baseLineHeight;
|
|
dt, dd {
|
|
line-height: @baseLineHeight;
|
|
}
|
|
dt {
|
|
font-weight: bold;
|
|
}
|
|
dd {
|
|
margin-left: @baseLineHeight / 2;
|
|
}
|
|
}
|
|
|
|
// MISC
|
|
// ----
|
|
|
|
// Horizontal rules
|
|
hr {
|
|
margin: 20px 0 19px;
|
|
border: 0;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
|
|
// Emphasis
|
|
strong {
|
|
font-style: inherit;
|
|
font-weight: bold;
|
|
}
|
|
em {
|
|
font-style: italic;
|
|
font-weight: inherit;
|
|
line-height: inherit;
|
|
}
|
|
.muted {
|
|
color: @grayLight;
|
|
}
|
|
|
|
// Blockquotes
|
|
blockquote {
|
|
margin-bottom: @baseLineHeight;
|
|
border-left: 5px solid #eee;
|
|
padding-left: 15px;
|
|
p {
|
|
#font > .shorthand(300,14px,@baseLineHeight);
|
|
margin-bottom: 0;
|
|
}
|
|
small {
|
|
display: block;
|
|
#font > .shorthand(300,12px,@baseLineHeight);
|
|
color: @grayLight;
|
|
&:before {
|
|
content: '\2014 \00A0';
|
|
}
|
|
}
|
|
}
|
|
|
|
// Addresses
|
|
address {
|
|
display: block;
|
|
line-height: @baseLineHeight;
|
|
margin-bottom: @baseLineHeight;
|
|
}
|
|
|
|
// Inline and block code styles
|
|
code, pre {
|
|
padding: 0 3px 2px;
|
|
font-family: Menlo, Monaco, Andale Mono, Courier New, monospace;
|
|
font-size: 12px;
|
|
.border-radius(3px);
|
|
}
|
|
code {
|
|
background-color: lighten(@orange, 40%);
|
|
color: rgba(0,0,0,.75);
|
|
padding: 1px 3px;
|
|
}
|
|
pre {
|
|
background-color: #f5f5f5;
|
|
display: block;
|
|
padding: (@baseLineHeight - 1) / 2;
|
|
margin: 0 0 @baseLineHeight;
|
|
line-height: @baseLineHeight;
|
|
font-size: 12px;
|
|
border: 1px solid #ccc;
|
|
border: 1px solid rgba(0,0,0,.15);
|
|
.border-radius(3px);
|
|
white-space: pre;
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
|
|
} |