twbs--bootstrap/lib/type.less

213 lines
3.4 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 {
font-family: @baseFontFamily;
font-size: @baseFontSize;
line-height: @baseLineHeight;
margin-bottom: @baseLineHeight / 2;
2011-05-04 01:09:25 +00:00
small {
font-size: @baseFontSize - 2;
color: @grayLight;
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 {
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 {
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 {
font-size: 16px;
line-height: @baseLineHeight * 2;
2011-05-04 01:09:25 +00:00
small {
font-size: 12px;
}
}
h5 {
font-size: 14px;
line-height: @baseLineHeight;
2011-05-04 01:09:25 +00:00
}
h6 {
font-size: 13px;
line-height: @baseLineHeight;
color: @grayLight;
2011-05-04 01:09:25 +00:00
text-transform: uppercase;
}
2011-08-17 05:58:01 +00:00
// COLORS
// ------
2011-05-04 01:09:25 +00:00
// Unordered and Ordered lists
ul, ol {
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;
color: @grayDark;
2011-05-04 01:09:25 +00:00
}
ul.unstyled {
list-style: none;
margin-left: 0;
}
// Description Lists
dl {
margin-bottom: @baseLineHeight;
2011-05-04 01:09:25 +00:00
dt, dd {
line-height: @baseLineHeight;
2011-05-04 01:09:25 +00:00
}
dt {
font-weight: bold;
}
dd {
margin-left: @baseLineHeight / 2;
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: 20px 0 19px;
2011-05-04 01:09:25 +00:00
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;
2011-05-04 01:09:25 +00:00
}
// Abbreviations and acronyms
abbr {
font-size: 90%;
text-transform: uppercase;
border-bottom: 1px dotted #ddd;
cursor: help;
}
2011-05-04 01:09:25 +00:00
// Blockquotes
blockquote {
margin-bottom: @baseLineHeight;
2011-05-04 01:09:25 +00:00
border-left: 5px solid #eee;
padding-left: 15px;
p {
#font > .shorthand(300,16px,@baseLineHeight * 1.25);
2011-05-04 01:09:25 +00:00
margin-bottom: 0;
}
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;
p,
small {
text-align: right;
}
}
2011-05-04 01:09:25 +00:00
}
// Addresses
address {
display: block;
line-height: @baseLineHeight;
margin-bottom: @baseLineHeight;
2011-05-04 01:09:25 +00:00
}
// Inline and block code styles
code,
pre {
2011-05-04 01:09:25 +00:00
padding: 0 3px 2px;
#font > #family > .monospace;
2011-05-04 01:09:25 +00:00
font-size: 12px;
color: @grayDark;
2011-05-04 01:09:25 +00:00
.border-radius(3px);
}
code {
background-color: lighten(@orange, 40%);
2011-08-18 18:37:47 +00:00
padding: 1px 3px;
2011-05-04 01:09:25 +00:00
}
pre {
background-color: #f5f5f5;
display: block;
padding: (@baseLineHeight - 1) / 2;
margin: 0 0 @baseLineHeight / 2;
line-height: @baseLineHeight;
2011-05-04 01:09:25 +00:00
font-size: 12px;
border: 1px solid #ccc;
2011-05-04 01:09:25 +00:00
border: 1px solid rgba(0,0,0,.15);
.border-radius(3px);
white-space: pre;
2011-05-04 01:09:25 +00:00
white-space: pre-wrap;
word-break: break-all;
// Account for some code outputs that place code tags in pre tags
code {
padding: 0;
background-color: transparent;
}
}