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