2011-06-29 18:40:52 -04:00
|
|
|
/* Typography.less
|
2011-06-28 17:24:02 -04:00
|
|
|
* Headings, body text, lists, code, and more for a versatile and durable typography system
|
2011-06-29 18:40:52 -04:00
|
|
|
* ---------------------------------------------------------------------------------------- */
|
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 {
|
2011-06-28 18:11:41 -04:00
|
|
|
#font > .shorthand(normal,@basefont,@baseline);
|
2011-08-20 04:51:06 -04:00
|
|
|
margin-bottom: @baseline / 2;
|
2011-05-03 21:09:25 -04:00
|
|
|
small {
|
2011-08-20 21:58:12 -04:00
|
|
|
font-size: @basefont - 2;
|
2011-06-27 19:47:12 -04:00
|
|
|
color: @grayLight;
|
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 {
|
2011-06-29 20:10:53 -04:00
|
|
|
font-weight: bold;
|
2011-06-27 19:47:12 -04:00
|
|
|
color: @grayDark;
|
2011-05-03 21:09:25 -04:00
|
|
|
small {
|
2011-06-27 19:47:12 -04:00
|
|
|
color: @grayLight;
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
h1 {
|
|
|
|
margin-bottom: @baseline;
|
|
|
|
font-size: 30px;
|
|
|
|
line-height: @baseline * 2;
|
|
|
|
small {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h2 {
|
|
|
|
font-size: 24px;
|
|
|
|
line-height: @baseline * 2;
|
|
|
|
small {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h3, h4, h5, h6 {
|
|
|
|
line-height: @baseline * 2;
|
|
|
|
}
|
|
|
|
h3 {
|
|
|
|
font-size: 18px;
|
|
|
|
small {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h4 {
|
|
|
|
font-size: 16px;
|
|
|
|
small {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h5 {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
h6 {
|
|
|
|
font-size: 13px;
|
2011-06-27 19:47:12 -04:00
|
|
|
color: @grayLight;
|
2011-05-03 21:09:25 -04:00
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-17 01:58:01 -04:00
|
|
|
// COLORS
|
2011-06-29 18:40:52 -04:00
|
|
|
// ------
|
2011-05-03 21:09:25 -04:00
|
|
|
|
|
|
|
// Unordered and Ordered lists
|
|
|
|
ul, ol {
|
|
|
|
margin: 0 0 @baseline 25px;
|
|
|
|
}
|
|
|
|
ul ul,
|
|
|
|
ul ol,
|
|
|
|
ol ol,
|
|
|
|
ol ul {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
ul {
|
|
|
|
list-style: disc;
|
|
|
|
}
|
|
|
|
ol {
|
|
|
|
list-style: decimal;
|
|
|
|
}
|
|
|
|
li {
|
|
|
|
line-height: @baseline;
|
|
|
|
color: @gray;
|
|
|
|
}
|
|
|
|
ul.unstyled {
|
|
|
|
list-style: none;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Description Lists
|
|
|
|
dl {
|
|
|
|
margin-bottom: @baseline;
|
|
|
|
dt, dd {
|
|
|
|
line-height: @baseline;
|
|
|
|
}
|
|
|
|
dt {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
dd {
|
|
|
|
margin-left: @baseline / 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
2011-09-11 00:05:23 -04:00
|
|
|
margin: 20px 0 19px;
|
2011-05-03 21:09:25 -04: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 {
|
2011-08-25 03:13:40 -04:00
|
|
|
color: @grayLight;
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Blockquotes
|
|
|
|
blockquote {
|
|
|
|
margin-bottom: @baseline;
|
|
|
|
border-left: 5px solid #eee;
|
|
|
|
padding-left: 15px;
|
|
|
|
p {
|
2011-06-27 19:47:12 -04:00
|
|
|
#font > .shorthand(300,14px,@baseline);
|
2011-05-03 21:09:25 -04:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2011-08-20 01:15:57 -04:00
|
|
|
small {
|
2011-05-03 21:09:25 -04:00
|
|
|
display: block;
|
2011-06-27 19:47:12 -04:00
|
|
|
#font > .shorthand(300,12px,@baseline);
|
|
|
|
color: @grayLight;
|
2011-05-03 21:09:25 -04:00
|
|
|
&:before {
|
|
|
|
content: '\2014 \00A0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Addresses
|
|
|
|
address {
|
|
|
|
display: block;
|
|
|
|
line-height: @baseline;
|
|
|
|
margin-bottom: @baseline;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Inline and block code styles
|
|
|
|
code, pre {
|
|
|
|
padding: 0 3px 2px;
|
|
|
|
font-family: Monaco, Andale Mono, Courier New, monospace;
|
|
|
|
font-size: 12px;
|
|
|
|
.border-radius(3px);
|
|
|
|
}
|
|
|
|
code {
|
|
|
|
background-color: lighten(@orange, 40%);
|
|
|
|
color: rgba(0,0,0,.75);
|
2011-08-18 14:37:47 -04:00
|
|
|
padding: 1px 3px;
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
|
|
|
pre {
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
display: block;
|
2011-09-10 18:29:38 -04:00
|
|
|
padding: (@baseline - 1) / 2;
|
2011-05-03 21:09:25 -04:00
|
|
|
margin: 0 0 @baseline;
|
|
|
|
line-height: @baseline;
|
|
|
|
font-size: 12px;
|
2011-08-20 04:51:06 -04:00
|
|
|
border: 1px solid #ccc;
|
2011-05-03 21:09:25 -04:00
|
|
|
border: 1px solid rgba(0,0,0,.15);
|
|
|
|
.border-radius(3px);
|
2011-08-25 03:13:40 -04:00
|
|
|
white-space: pre;
|
2011-05-03 21:09:25 -04:00
|
|
|
white-space: pre-wrap;
|
2011-08-25 03:13:40 -04:00
|
|
|
word-wrap: break-word;
|
|
|
|
|
2011-06-28 18:11:41 -04:00
|
|
|
}
|