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