twbs--bootstrap/scss/_type.scss

235 lines
4.1 KiB
SCSS
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Typography
// --------------------------------------------------
2011-05-04 01:09:25 +00:00
// Headings
// -------------------------
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
2014-07-14 06:33:54 +00:00
margin-top: 0;
2014-12-02 22:02:35 +00:00
font-family: $headings-font-family;
font-weight: $headings-font-weight;
line-height: $headings-line-height;
color: $headings-color;
small,
.small {
font-weight: normal;
line-height: 1;
2014-12-02 22:02:35 +00:00
color: $headings-small-color;
}
}
h1, .h1,
h2, .h2,
h3, .h3 {
2014-12-04 09:03:23 +00:00
margin-bottom: ($spacer / 2);
small,
.small {
font-size: 65%;
}
}
h4, .h4,
h5, .h5,
h6, .h6 {
2014-12-04 09:03:23 +00:00
margin-bottom: ($spacer / 2);
small,
.small {
font-size: 75%;
}
}
2014-12-02 22:02:35 +00: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; }
2012-07-05 22:11:54 +00:00
// Body text
// -------------------------
2011-05-04 01:09:25 +00:00
p {
2014-07-08 06:36:40 +00:00
margin-top: 0;
margin-bottom: 1rem;
2011-05-04 01:09:25 +00:00
}
.lead {
font-size: 1.25rem;
font-weight: 300;
}
2011-05-04 01:09:25 +00:00
2012-07-05 22:11:54 +00:00
// Emphasis & misc
// -------------------------
// Ex: (12px small font / 14px base font) * 100% = about 85%
2013-08-27 16:21:09 +00:00
small,
.small {
2014-12-02 22:02:35 +00:00
font-size: floor((100% * $font-size-sm / $font-size-base));
}
2014-03-07 08:10:46 +00:00
mark,
.mark {
padding: .2em;
background-color: $state-warning-bg;
2014-03-07 08:10:46 +00:00
}
// Page header
2012-07-05 22:11:54 +00:00
// -------------------------
2014-07-08 06:36:40 +00:00
// .page-header {
2014-12-02 22:02:35 +00:00
// padding-bottom: (($line-height-computed / 2) - 1);
// margin: ($line-height-computed * 2) 0 @line-height-computed;
2014-07-08 06:36:40 +00:00
// border-bottom: 1px solid @page-header-border-color;
// }
2012-07-05 22:11:54 +00:00
// Lists
// -------------------------
2011-05-04 01:09:25 +00:00
// Unordered and Ordered lists
ul,
ol {
margin-top: 0;
2014-12-02 22:02:35 +00:00
margin-bottom: ($line-height-computed / 2);
2013-07-09 01:22:36 +00:00
ul,
ol {
2013-07-09 01:22:36 +00:00
margin-bottom: 0;
}
2011-05-04 01:09:25 +00:00
}
2012-11-04 20:36:37 +00:00
// List options
// Unstyled keeps list items block level, just removes default browser padding and list-style
.list-unstyled {
padding-left: 0;
list-style: none;
2011-05-04 01:09:25 +00:00
}
// Inline turns list items into inline-block
.list-inline {
2014-12-02 22:02:35 +00:00
@extend list-unstyled();
margin-left: -5px;
> li {
display: inline-block;
padding-right: 5px;
padding-left: 5px;
}
2012-10-26 07:47:55 +00:00
}
2011-05-04 01:09:25 +00:00
// Description Lists
dl {
margin-top: 0; // Remove browser default
2014-12-02 22:02:35 +00:00
margin-bottom: $line-height-computed;
}
dt,
dd {
2014-12-02 22:02:35 +00:00
line-height: $line-height-base;
}
dt {
font-weight: bold;
}
dd {
margin-left: 0; // Undo browser default
2011-05-04 01:09:25 +00:00
}
// Horizontal description lists
//
// Defaults to being stacked without any of the below styles applied, until the
// grid breakpoint is reached (default of ~768px).
.dl-horizontal {
dd {
2014-12-02 22:02:35 +00:00
@include clearfix(); // Clear the floated `dt` if an empty `dd` is present
}
2014-12-02 22:02:35 +00:00
@media (min-width: $grid-float-breakpoint) {
dt {
float: left;
2014-12-02 22:02:35 +00:00
width: ($dl-horizontal-offset - 20);
clear: left;
text-align: right;
2014-12-02 22:02:35 +00:00
@include text-overflow();
}
dd {
2014-12-02 22:02:35 +00:00
margin-left: $dl-horizontal-offset;
}
}
}
2011-05-04 01:09:25 +00:00
// Misc
// -------------------------
2011-05-04 01:09:25 +00:00
// Abbreviations and acronyms
abbr[title],
// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257
abbr[data-original-title] {
cursor: help;
2014-12-02 22:02:35 +00:00
border-bottom: 1px dotted $abbr-border-color;
}
.initialism {
font-size: 90%;
text-transform: uppercase;
}
2011-05-04 01:09:25 +00:00
// Blockquotes
blockquote {
2014-12-04 23:19:23 +00:00
padding: ($spacer / 2) $spacer;
margin: 0 0 $spacer;
2014-12-02 22:02:35 +00:00
font-size: $blockquote-font-size;
2014-12-04 23:19:23 +00:00
border-left: .25rem solid $blockquote-border-color;
p,
ul,
ol {
&:last-child {
margin-bottom: 0;
}
}
2014-07-09 20:54:32 +00:00
footer {
2011-05-04 01:09:25 +00:00
display: block;
font-size: 80%; // back to default font-size
2014-12-02 22:02:35 +00:00
line-height: $line-height-base;
color: $blockquote-small-color;
2011-05-04 01:09:25 +00:00
&:before {
content: "\2014 \00A0"; // em dash, nbsp
2011-05-04 01:09:25 +00:00
}
}
}
// Opposite alignment of blockquote
2014-07-09 20:54:32 +00:00
.blockquote-reverse {
2014-12-04 23:19:23 +00:00
padding-right: $spacer;
padding-left: 0;
text-align: right;
2014-12-04 23:19:23 +00:00
border-right: .25rem solid $blockquote-border-color;
border-left: 0;
// Account for citation
2014-07-09 20:54:32 +00:00
footer {
&:before { content: ""; }
&:after {
content: "\00A0 \2014"; // nbsp, em dash
}
}
2011-05-04 01:09:25 +00:00
}
// Addresses
address {
2014-12-02 22:02:35 +00:00
margin-bottom: $line-height-computed;
font-style: normal;
2014-12-02 22:02:35 +00:00
line-height: $line-height-base;
2011-05-04 01:09:25 +00:00
}