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 {
|
2011-11-17 01:28:42 -08:00
|
|
|
margin-bottom: @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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
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 {
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h4 {
|
|
|
|
font-size: 16px;
|
2011-10-04 00:20:38 -07:00
|
|
|
line-height: @baseLineHeight * 2;
|
2011-05-03 18:09:25 -07:00
|
|
|
small {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h5 {
|
|
|
|
font-size: 14px;
|
2011-10-04 00:20:38 -07:00
|
|
|
line-height: @baseLineHeight;
|
2011-05-03 18:09:25 -07:00
|
|
|
}
|
|
|
|
h6 {
|
|
|
|
font-size: 13px;
|
2011-10-04 00:20:38 -07:00
|
|
|
line-height: @baseLineHeight;
|
2011-06-27 16:47:12 -07:00
|
|
|
color: @grayLight;
|
2011-05-03 18:09:25 -07:00
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-16 22:58:01 -07:00
|
|
|
// COLORS
|
2011-06-29 15:40:52 -07:00
|
|
|
// ------
|
2011-05-03 18:09:25 -07:00
|
|
|
|
|
|
|
// Unordered and Ordered lists
|
|
|
|
ul, ol {
|
2011-10-17 23:45:35 -07: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-10-16 18:01:05 -07:00
|
|
|
color: @grayDark;
|
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;
|
2011-05-03 18:09:25 -07:00
|
|
|
dt, dd {
|
2011-10-04 00:20:38 -07:00
|
|
|
line-height: @baseLineHeight;
|
2011-05-03 18:09:25 -07:00
|
|
|
}
|
|
|
|
dt {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
dd {
|
2011-10-04 00:20:38 -07:00
|
|
|
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 {
|
2011-12-09 14:34:38 -08:00
|
|
|
margin: @baseLineHeight * 1.5 0;
|
2011-05-03 18:09:25 -07:00
|
|
|
border: 0;
|
2011-12-09 14:34:38 -08:00
|
|
|
border-top: 1px solid #e5e5e5;
|
|
|
|
border-bottom: 1px solid #fff;
|
2011-05-03 18:09:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Emphasis
|
|
|
|
strong {
|
|
|
|
font-style: inherit;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
em {
|
|
|
|
font-style: italic;
|
|
|
|
font-weight: inherit;
|
|
|
|
line-height: inherit;
|
|
|
|
}
|
|
|
|
.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 {
|
2011-11-17 01:28:42 -08:00
|
|
|
padding-left: 15px;
|
2011-10-04 00:20:38 -07:00
|
|
|
margin-bottom: @baseLineHeight;
|
2011-05-03 18:09:25 -07:00
|
|
|
border-left: 5px solid #eee;
|
|
|
|
p {
|
|
|
|
margin-bottom: 0;
|
2011-11-17 01:28:42 -08:00
|
|
|
#font > .shorthand(300,16px,@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;
|
|
|
|
p,
|
|
|
|
small {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
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;
|
2011-05-03 18:09:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Inline and block code styles
|
2011-11-17 00:52:11 -08:00
|
|
|
code,
|
|
|
|
pre {
|
2011-05-03 18:09:25 -07:00
|
|
|
padding: 0 3px 2px;
|
2011-11-17 00:52:11 -08:00
|
|
|
#font > #family > .monospace;
|
2011-05-03 18:09:25 -07:00
|
|
|
font-size: 12px;
|
2011-11-17 00:52:11 -08:00
|
|
|
color: @grayDark;
|
2011-05-03 18:09:25 -07:00
|
|
|
.border-radius(3px);
|
|
|
|
}
|
|
|
|
code {
|
2011-08-18 11:37:47 -07:00
|
|
|
padding: 1px 3px;
|
2011-11-17 01:28:42 -08:00
|
|
|
background-color: lighten(@orange, 40%);
|
2011-05-03 18:09:25 -07:00
|
|
|
}
|
|
|
|
pre {
|
|
|
|
display: block;
|
2011-10-04 00:20:38 -07:00
|
|
|
padding: (@baseLineHeight - 1) / 2;
|
2011-10-22 22:49:37 -07:00
|
|
|
margin: 0 0 @baseLineHeight / 2;
|
2011-05-03 18:09:25 -07:00
|
|
|
font-size: 12px;
|
2011-11-17 01:28:42 -08:00
|
|
|
line-height: @baseLineHeight;
|
|
|
|
background-color: #f5f5f5;
|
2011-08-20 01:51:06 -07:00
|
|
|
border: 1px solid #ccc;
|
2011-05-03 18:09:25 -07:00
|
|
|
border: 1px solid rgba(0,0,0,.15);
|
|
|
|
.border-radius(3px);
|
2011-08-25 00:13:40 -07:00
|
|
|
white-space: pre;
|
2011-05-03 18:09:25 -07:00
|
|
|
white-space: pre-wrap;
|
2011-10-22 22:49:37 -07:00
|
|
|
word-break: break-all;
|
2011-11-17 00:52:11 -08:00
|
|
|
|
2011-11-29 23:48:27 -08:00
|
|
|
// Make prettyprint styles more spaced out for readability
|
|
|
|
&.prettyprint {
|
|
|
|
margin-bottom: @baseLineHeight;
|
|
|
|
}
|
|
|
|
|
2011-11-17 00:52:11 -08:00
|
|
|
// Account for some code outputs that place code tags in pre tags
|
|
|
|
code {
|
|
|
|
padding: 0;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2011-06-28 15:11:41 -07:00
|
|
|
}
|