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