12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- // Typography
- //
- // Headings, body text, lists, and other misc typographic elements.
- // Headings
- h1, h2, h3, h4, h5, h6 {
- margin-bottom: .5rem;
- font-weight: bold;
- line-height: 1.25;
- color: #313131;
- text-rendering: optimizeLegibility;
- }
- h1 {
- font-size: 2rem;
- }
- h2 {
- margin-top: 1rem;
- font-size: 1.5rem;
- }
- h3 {
- margin-top: 1.5rem;
- font-size: 1.25rem;
- }
- h4, h5, h6 {
- margin-top: 1rem;
- font-size: 1rem;
- }
- // Body text
- p {
- margin-top: 0;
- margin-bottom: 1rem;
- }
- strong {
- color: #303030;
- }
- // Lists
- ul, ol, dl {
- margin-top: 0;
- margin-bottom: 1rem;
- }
- dt {
- font-weight: bold;
- }
- dd {
- margin-bottom: .5rem;
- }
- // Misc
- hr {
- position: relative;
- margin: 1.5rem 0;
- border: 0;
- border-top: 1px solid #eee;
- border-bottom: 1px solid #fff;
- }
- abbr {
- font-size: 85%;
- font-weight: bold;
- color: #555;
- text-transform: uppercase;
- }
- abbr[title] {
- cursor: help;
- border-bottom: 1px dotted #e5e5e5;
- }
- /* Quotes */
- blockquote {
- padding: .5rem 1rem;
- margin: .8rem 0;
- color: #7a7a7a;
- border-left: .25rem solid #e5e5e5;
- @media (min-width: 30em) {
- padding-right: 5rem;
- padding-left: 1.25rem;
- }
- }
- blockquote p:last-child {
- margin-bottom: 0;
- }
- // Custom type
- //
- // Extend paragraphs with `.lead` for larger introductory text.
- .lead {
- font-size: 1.25rem;
- font-weight: 300;
- }
|