2012-06-29 12:46:45 +08:00
|
|
|
//
|
|
|
|
// Typography
|
|
|
|
// --------------------------------------------------
|
2011-05-04 09:09:25 +08:00
|
|
|
|
|
|
|
|
2013-12-01 06:58:35 +08:00
|
|
|
// Headings
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6,
|
|
|
|
.h1, .h2, .h3, .h4, .h5, .h6 {
|
2014-07-14 14:33:54 +08:00
|
|
|
margin-top: 0;
|
2014-12-03 06:02:35 +08:00
|
|
|
font-family: $headings-font-family;
|
|
|
|
font-weight: $headings-font-weight;
|
|
|
|
line-height: $headings-line-height;
|
|
|
|
color: $headings-color;
|
2013-12-01 06:58:35 +08:00
|
|
|
|
|
|
|
small,
|
|
|
|
.small {
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 1;
|
2014-12-03 06:02:35 +08:00
|
|
|
color: $headings-small-color;
|
2013-12-01 06:58:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-19 01:49:05 +08:00
|
|
|
h1, .h1,
|
|
|
|
h2, .h2,
|
|
|
|
h3, .h3 {
|
2014-12-04 17:03:23 +08:00
|
|
|
margin-bottom: ($spacer / 2);
|
2013-12-01 06:58:35 +08:00
|
|
|
|
|
|
|
small,
|
|
|
|
.small {
|
|
|
|
font-size: 65%;
|
|
|
|
}
|
|
|
|
}
|
2013-12-19 01:49:05 +08:00
|
|
|
h4, .h4,
|
|
|
|
h5, .h5,
|
|
|
|
h6, .h6 {
|
2014-12-04 17:03:23 +08:00
|
|
|
margin-bottom: ($spacer / 2);
|
2013-12-01 06:58:35 +08:00
|
|
|
|
|
|
|
small,
|
|
|
|
.small {
|
|
|
|
font-size: 75%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-03 06:02:35 +08:00
|
|
|
h1, .h1 { font-size: $font-size-h1; }
|
|
|
|
h2, .h2 { font-size: $font-size-h2; }
|
|
|
|
h3, .h3 { font-size: $font-size-h3; }
|
|
|
|
h4, .h4 { font-size: $font-size-h4; }
|
|
|
|
h5, .h5 { font-size: $font-size-h5; }
|
|
|
|
h6, .h6 { font-size: $font-size-h6; }
|
2013-12-01 06:58:35 +08:00
|
|
|
|
|
|
|
|
2012-07-06 06:11:54 +08:00
|
|
|
// Body text
|
|
|
|
// -------------------------
|
2011-05-04 09:09:25 +08:00
|
|
|
|
|
|
|
p {
|
2014-07-08 14:36:40 +08:00
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 1rem;
|
2011-05-04 09:09:25 +08:00
|
|
|
}
|
2013-12-01 06:58:35 +08:00
|
|
|
|
2012-01-25 15:35:34 +08:00
|
|
|
.lead {
|
2014-07-08 15:10:31 +08:00
|
|
|
font-size: 1.25rem;
|
|
|
|
font-weight: 300;
|
2012-01-25 15:35:34 +08:00
|
|
|
}
|
2011-05-04 09:09:25 +08:00
|
|
|
|
2012-07-06 06:11:54 +08:00
|
|
|
|
2015-04-17 08:10:47 +08:00
|
|
|
// Horizontal rules
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
hr {
|
|
|
|
margin-top: $spacer;
|
|
|
|
margin-bottom: $spacer;
|
|
|
|
border: 0;
|
|
|
|
border-top: .0625rem solid $hr-border;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-20 04:12:19 +08:00
|
|
|
// Emphasis & misc
|
|
|
|
// -------------------------
|
|
|
|
|
2014-06-20 17:31:49 +08:00
|
|
|
// Ex: (12px small font / 14px base font) * 100% = about 85%
|
2013-08-28 00:21:09 +08:00
|
|
|
small,
|
2014-04-26 14:30:50 +08:00
|
|
|
.small {
|
2014-12-03 06:02:35 +08:00
|
|
|
font-size: floor((100% * $font-size-sm / $font-size-base));
|
2014-04-26 14:30:50 +08:00
|
|
|
}
|
2012-11-01 01:46:04 +08:00
|
|
|
|
2014-03-07 16:10:46 +08:00
|
|
|
mark,
|
|
|
|
.mark {
|
|
|
|
padding: .2em;
|
2014-12-12 04:05:29 +08:00
|
|
|
background-color: $state-warning-bg;
|
2014-03-07 16:10:46 +08:00
|
|
|
}
|
|
|
|
|
2012-08-20 04:12:19 +08:00
|
|
|
|
2012-01-28 07:28:09 +08:00
|
|
|
// Page header
|
2012-07-06 06:11:54 +08:00
|
|
|
// -------------------------
|
|
|
|
|
2014-07-08 14:36:40 +08:00
|
|
|
// .page-header {
|
2014-12-03 06:02:35 +08:00
|
|
|
// padding-bottom: (($line-height-computed / 2) - 1);
|
|
|
|
// margin: ($line-height-computed * 2) 0 @line-height-computed;
|
2014-07-08 14:36:40 +08:00
|
|
|
// border-bottom: 1px solid @page-header-border-color;
|
|
|
|
// }
|
2012-01-28 07:28:09 +08:00
|
|
|
|
|
|
|
|
2012-07-06 06:11:54 +08:00
|
|
|
// Lists
|
2014-02-23 04:13:11 +08:00
|
|
|
// -------------------------
|
2011-05-04 09:09:25 +08:00
|
|
|
|
|
|
|
// Unordered and Ordered lists
|
2013-01-16 09:55:14 +08:00
|
|
|
ul,
|
|
|
|
ol {
|
2013-06-18 04:35:50 +08:00
|
|
|
margin-top: 0;
|
2014-12-03 06:02:35 +08:00
|
|
|
margin-bottom: ($line-height-computed / 2);
|
2014-12-20 10:35:10 +08:00
|
|
|
|
2013-07-09 09:22:36 +08:00
|
|
|
ul,
|
2013-10-25 10:56:44 +08:00
|
|
|
ol {
|
2013-07-09 09:22:36 +08:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2011-05-04 09:09:25 +08:00
|
|
|
}
|
2012-11-05 04:36:37 +08:00
|
|
|
|
2012-11-05 04:42:00 +08:00
|
|
|
// List options
|
2013-03-28 06:42:11 +08:00
|
|
|
|
2013-06-18 04:49:22 +08:00
|
|
|
// Unstyled keeps list items block level, just removes default browser padding and list-style
|
2013-03-28 06:42:11 +08:00
|
|
|
.list-unstyled {
|
2013-06-18 04:49:22 +08:00
|
|
|
padding-left: 0;
|
2011-11-17 17:28:42 +08:00
|
|
|
list-style: none;
|
2011-05-04 09:09:25 +08:00
|
|
|
}
|
2013-10-26 21:13:34 +08:00
|
|
|
|
2013-03-28 06:42:11 +08:00
|
|
|
// Inline turns list items into inline-block
|
|
|
|
.list-inline {
|
2014-12-17 04:29:47 +08:00
|
|
|
@extend .list-unstyled;
|
2014-01-30 21:55:19 +08:00
|
|
|
margin-left: -5px;
|
2013-10-26 21:13:34 +08:00
|
|
|
|
2013-03-28 06:42:11 +08:00
|
|
|
> li {
|
|
|
|
display: inline-block;
|
|
|
|
padding-right: 5px;
|
2014-12-12 04:05:29 +08:00
|
|
|
padding-left: 5px;
|
2013-03-28 06:42:11 +08:00
|
|
|
}
|
2012-10-26 15:47:55 +08:00
|
|
|
}
|
2011-05-04 09:09:25 +08:00
|
|
|
|
|
|
|
// Description Lists
|
|
|
|
dl {
|
2013-12-01 15:08:41 +08:00
|
|
|
margin-top: 0; // Remove browser default
|
2014-12-03 06:02:35 +08:00
|
|
|
margin-bottom: $line-height-computed;
|
2012-01-16 05:12:29 +08:00
|
|
|
}
|
|
|
|
dt,
|
|
|
|
dd {
|
2014-12-03 06:02:35 +08:00
|
|
|
line-height: $line-height-base;
|
2012-01-16 05:12:29 +08:00
|
|
|
}
|
|
|
|
dt {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
dd {
|
2013-07-24 01:18:34 +08:00
|
|
|
margin-left: 0; // Undo browser default
|
2011-05-04 09:09:25 +08:00
|
|
|
}
|
2013-08-06 00:10:52 +08:00
|
|
|
|
2014-12-12 06:12:10 +08:00
|
|
|
// Horizontal description lists w/ grid classes
|
2014-02-23 04:13:11 +08:00
|
|
|
.dl-horizontal {
|
2014-12-12 06:12:10 +08:00
|
|
|
margin-right: -$grid-gutter-width;
|
|
|
|
margin-left: -$grid-gutter-width;
|
|
|
|
@include clearfix;
|
2012-02-26 11:21:05 +08:00
|
|
|
}
|
2011-05-04 09:09:25 +08:00
|
|
|
|
2014-02-23 04:13:11 +08:00
|
|
|
|
|
|
|
// Misc
|
|
|
|
// -------------------------
|
2011-05-04 09:09:25 +08:00
|
|
|
|
2011-10-18 05:17:29 +08:00
|
|
|
// Abbreviations and acronyms
|
2012-10-04 00:36:45 +08:00
|
|
|
abbr[title],
|
2013-10-30 03:06:45 +08:00
|
|
|
// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257
|
2012-10-04 00:36:45 +08:00
|
|
|
abbr[data-original-title] {
|
2011-10-18 05:17:29 +08:00
|
|
|
cursor: help;
|
2014-12-03 06:02:35 +08:00
|
|
|
border-bottom: 1px dotted $abbr-border-color;
|
2011-10-18 05:17:29 +08:00
|
|
|
}
|
2013-12-01 08:18:07 +08:00
|
|
|
.initialism {
|
2012-02-20 04:24:06 +08:00
|
|
|
font-size: 90%;
|
2015-03-02 06:11:22 +08:00
|
|
|
text-transform: uppercase;
|
2012-02-20 04:24:06 +08:00
|
|
|
}
|
2011-10-18 05:17:29 +08:00
|
|
|
|
2011-05-04 09:09:25 +08:00
|
|
|
// Blockquotes
|
|
|
|
blockquote {
|
2014-12-05 07:19:23 +08:00
|
|
|
padding: ($spacer / 2) $spacer;
|
|
|
|
margin: 0 0 $spacer;
|
2014-12-03 06:02:35 +08:00
|
|
|
font-size: $blockquote-font-size;
|
2014-12-05 07:19:23 +08:00
|
|
|
border-left: .25rem solid $blockquote-border-color;
|
2013-12-20 11:40:08 +08:00
|
|
|
|
|
|
|
p,
|
|
|
|
ul,
|
|
|
|
ol {
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2013-04-21 03:09:08 +08:00
|
|
|
}
|
2013-12-16 06:23:55 +08:00
|
|
|
|
2014-07-10 04:54:32 +08:00
|
|
|
footer {
|
2011-05-04 09:09:25 +08:00
|
|
|
display: block;
|
2013-12-20 11:40:08 +08:00
|
|
|
font-size: 80%; // back to default font-size
|
2014-12-03 06:02:35 +08:00
|
|
|
line-height: $line-height-base;
|
|
|
|
color: $blockquote-small-color;
|
2013-12-20 11:40:08 +08:00
|
|
|
|
2011-05-04 09:09:25 +08:00
|
|
|
&:before {
|
2014-12-12 04:05:29 +08:00
|
|
|
content: "\2014 \00A0"; // em dash, nbsp
|
2011-05-04 09:09:25 +08:00
|
|
|
}
|
|
|
|
}
|
2013-12-20 11:40:08 +08:00
|
|
|
}
|
2011-10-31 11:14:27 +08:00
|
|
|
|
2013-12-20 11:40:08 +08:00
|
|
|
// Opposite alignment of blockquote
|
2014-07-10 04:54:32 +08:00
|
|
|
.blockquote-reverse {
|
2014-12-05 07:19:23 +08:00
|
|
|
padding-right: $spacer;
|
2013-12-20 11:40:08 +08:00
|
|
|
padding-left: 0;
|
2014-12-12 04:05:29 +08:00
|
|
|
text-align: right;
|
2014-12-05 07:19:23 +08:00
|
|
|
border-right: .25rem solid $blockquote-border-color;
|
2013-12-20 11:40:08 +08:00
|
|
|
border-left: 0;
|
|
|
|
|
|
|
|
// Account for citation
|
2014-07-10 04:54:32 +08:00
|
|
|
footer {
|
2014-12-12 04:05:29 +08:00
|
|
|
&:before { content: ""; }
|
2013-12-20 11:40:08 +08:00
|
|
|
&:after {
|
2014-12-12 04:05:29 +08:00
|
|
|
content: "\00A0 \2014"; // nbsp, em dash
|
2012-07-16 07:13:25 +08:00
|
|
|
}
|
2011-10-31 11:14:27 +08:00
|
|
|
}
|
2011-05-04 09:09:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Addresses
|
|
|
|
address {
|
2014-12-03 06:02:35 +08:00
|
|
|
margin-bottom: $line-height-computed;
|
2012-01-21 05:16:40 +08:00
|
|
|
font-style: normal;
|
2014-12-03 06:02:35 +08:00
|
|
|
line-height: $line-height-base;
|
2011-05-04 09:09:25 +08:00
|
|
|
}
|