twbs--bootstrap/less/type.less

234 lines
3.9 KiB
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Typography
// --------------------------------------------------
2011-05-04 01:09:25 +00:00
2012-07-05 22:11:54 +00:00
// Body text
// -------------------------
2011-05-04 01:09:25 +00:00
p {
margin: 0 0 @baseLineHeight / 2;
2011-05-04 01:09:25 +00:00
}
.lead {
margin-bottom: @baseLineHeight;
font-size: @baseFontSize * 1.5;
font-weight: 200;
line-height: @baseLineHeight * 1.5;
}
2011-05-04 01:09:25 +00:00
2012-07-05 22:11:54 +00:00
// Emphasis & misc
// -------------------------
small {
font-size: 85%; // Ex: 14px base font * 85% = about 12px
}
strong {
font-weight: bold;
}
em {
font-style: italic;
}
cite {
font-style: normal;
}
// Utility classes
.muted {
color: @grayLight;
}
.text-warning {
color: @warningText;
&:hover {
color: darken(@warningText, 10%);
}
}
.text-error {
color: @errorText;
&:hover {
color: darken(@errorText, 10%);
}
}
.text-info {
color: @infoText;
&:hover {
color: darken(@infoText, 10%);
}
}
.text-success {
color: @successText;
&:hover {
color: darken(@successText, 10%);
}
}
2012-07-05 22:11:54 +00:00
// Headings
// -------------------------
2011-05-04 01:09:25 +00:00
h1, h2, h3, h4, h5, h6 {
2012-07-05 22:11:54 +00:00
margin: (@baseLineHeight / 2) 0;
2012-03-06 21:45:43 +00:00
font-family: @headingsFontFamily;
font-weight: @headingsFontWeight;
2012-07-05 22:11:54 +00:00
line-height: 1;
2012-03-06 21:45:43 +00:00
color: @headingsColor;
text-rendering: optimizelegibility; // Fix the character spacing for headings
2011-05-04 01:09:25 +00:00
small {
font-weight: normal;
line-height: 1;
color: @grayLight;
2011-05-04 01:09:25 +00:00
}
}
2012-07-05 22:11:54 +00:00
h1 { font-size: 36px; line-height: 40px; }
h2 { font-size: 30px; line-height: 40px; }
h3 { font-size: 24px; line-height: 40px; }
h4 { font-size: 18px; line-height: 20px; }
h5 { font-size: 14px; line-height: 20px; }
h6 { font-size: 12px; line-height: 20px; }
h1 small { font-size: 24px; }
h2 small { font-size: 18px; }
h3 small { font-size: 14px; }
h4 small { font-size: 14px; }
2011-05-04 01:09:25 +00:00
// Page header
2012-07-05 22:11:54 +00:00
// -------------------------
.page-header {
padding-bottom: (@baseLineHeight / 2) - 1;
margin: @baseLineHeight 0 (@baseLineHeight * 1.5);
border-bottom: 1px solid @grayLighter;
}
2011-05-04 01:09:25 +00:00
2012-07-05 22:11:54 +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;
}
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)
2012-03-05 08:42:37 +00:00
.dl-horizontal {
.clearfix(); // Ensure dl clears floats if empty dd elements present
dt {
float: left;
width: @horizontalComponentOffset - 20;
2012-04-16 23:34:08 +00:00
clear: left;
text-align: right;
2012-04-16 23:34:08 +00:00
.text-overflow();
}
dd {
margin-left: @horizontalComponentOffset;
}
}
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
}
// Abbreviations and acronyms
abbr[title] {
cursor: help;
border-bottom: 1px dotted @grayLight;
}
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-right: 15px;
2012-04-16 23:34:08 +00:00
padding-left: 0;
2012-01-21 23:24:06 +00:00
border-right: 5px solid @grayLighter;
2012-04-16 23:34:08 +00:00
border-left: 0;
p,
small {
text-align: right;
}
small {
&:before {
content: '';
}
&:after {
content: '\00A0 \2014';
}
}
}
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;
font-style: normal;
2012-04-16 23:34:08 +00:00
line-height: @baseLineHeight;
2011-05-04 01:09:25 +00:00
}