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 {
|
2011-11-17 04:28:42 -05:00
|
|
|
margin-bottom: @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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-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 {
|
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-12 15:30:36 -05:00
|
|
|
// LISTS
|
|
|
|
// -----
|
2011-05-03 21:09:25 -04:00
|
|
|
|
|
|
|
// Unordered and Ordered lists
|
|
|
|
ul, ol {
|
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
|
|
|
}
|
|
|
|
ul.unstyled {
|
|
|
|
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;
|
2011-05-03 21:09:25 -04:00
|
|
|
dt, dd {
|
2011-10-04 03:20:38 -04:00
|
|
|
line-height: @baseLineHeight;
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
|
|
|
dt {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
dd {
|
2011-10-04 03:20:38 -04:00
|
|
|
margin-left: @baseLineHeight / 2;
|
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;
|
2011-12-09 17:34:38 -05:00
|
|
|
border-top: 1px solid #e5e5e5;
|
|
|
|
border-bottom: 1px solid #fff;
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
}
|
|
|
|
|
2011-10-17 17:17:29 -04:00
|
|
|
// Abbreviations and acronyms
|
|
|
|
abbr {
|
|
|
|
font-size: 90%;
|
|
|
|
text-transform: uppercase;
|
|
|
|
border-bottom: 1px dotted #ddd;
|
|
|
|
cursor: help;
|
|
|
|
}
|
|
|
|
|
2011-05-03 21:09:25 -04:00
|
|
|
// Blockquotes
|
|
|
|
blockquote {
|
2011-11-17 04:28:42 -05:00
|
|
|
padding-left: 15px;
|
2011-10-04 03:20:38 -04:00
|
|
|
margin-bottom: @baseLineHeight;
|
2011-05-03 21:09:25 -04:00
|
|
|
border-left: 5px solid #eee;
|
|
|
|
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;
|
|
|
|
border-right: 5px solid #eee;
|
2011-10-30 23:14:27 -04:00
|
|
|
p,
|
|
|
|
small {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
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;
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Inline and block code styles
|
2011-11-17 03:52:11 -05:00
|
|
|
code,
|
|
|
|
pre {
|
2011-05-03 21:09:25 -04:00
|
|
|
padding: 0 3px 2px;
|
2011-11-17 03:52:11 -05:00
|
|
|
#font > #family > .monospace;
|
2011-05-03 21:09:25 -04:00
|
|
|
font-size: 12px;
|
2011-11-17 03:52:11 -05:00
|
|
|
color: @grayDark;
|
2011-05-03 21:09:25 -04:00
|
|
|
.border-radius(3px);
|
|
|
|
}
|
|
|
|
code {
|
2011-08-18 14:37:47 -04:00
|
|
|
padding: 1px 3px;
|
2011-11-17 04:28:42 -05:00
|
|
|
background-color: lighten(@orange, 40%);
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
|
|
|
pre {
|
|
|
|
display: block;
|
2011-10-04 03:20:38 -04:00
|
|
|
padding: (@baseLineHeight - 1) / 2;
|
2011-10-23 01:49:37 -04:00
|
|
|
margin: 0 0 @baseLineHeight / 2;
|
2011-05-03 21:09:25 -04:00
|
|
|
font-size: 12px;
|
2011-11-17 04:28:42 -05:00
|
|
|
line-height: @baseLineHeight;
|
|
|
|
background-color: #f5f5f5;
|
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);
|
2012-01-07 23:40:28 -05:00
|
|
|
.border-radius(4px);
|
2011-08-25 03:13:40 -04:00
|
|
|
white-space: pre;
|
2011-05-03 21:09:25 -04:00
|
|
|
white-space: pre-wrap;
|
2011-10-23 01:49:37 -04:00
|
|
|
word-break: break-all;
|
2011-11-17 03:52:11 -05:00
|
|
|
|
2011-11-30 02:48:27 -05:00
|
|
|
// Make prettyprint styles more spaced out for readability
|
|
|
|
&.prettyprint {
|
|
|
|
margin-bottom: @baseLineHeight;
|
|
|
|
}
|
|
|
|
|
2011-11-17 03:52:11 -05:00
|
|
|
// Account for some code outputs that place code tags in pre tags
|
|
|
|
code {
|
|
|
|
padding: 0;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2011-06-28 18:11:41 -04:00
|
|
|
}
|