| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /**
- * Basic typography style for copy text
- */
- html {
- font-family: sans-serif;
- -ms-text-size-adjust: 100%;
- -webkit-text-size-adjust: 100%;
- }
- body {
- font-size: 1rem;
- font-family: $text-font-stack;
- }
- code,
- pre {
- font-size: 0.85rem;
- font-family: $code-font-stack;
- }
- .h1 {
- font-size: 4rem;
- }
- .h2 {
- font-size: 3.5rem;
- }
- .h3 {
- font-size: 3rem;
- }
- .h4 {
- font-size: 2.5rem;
- }
- .h5 {
- font-size: 2rem;
- }
- .h6 {
- font-size: 1.5rem;
- }
- .p1 {
- font-size: 1.2rem;
- }
- .p2 {
- font-size: 1rem;
- }
- .caption {
- font-size: 0.8rem;
- }
|