typography.css (1657B)
1 /* Typography */ 2 3 strong, 4 b { 5 font-weight: 700; 6 } 7 8 em, 9 i { 10 font-style: italic; 11 } 12 13 p { 14 margin-bottom: .75em; 15 margin-top: 0; 16 letter-spacing: -0.004em; 17 font-feature-settings: "ss01"; 18 } 19 20 serif { 21 font-family: 'Archive Pro'; 22 } 23 24 h1, 25 h2, 26 h3, 27 h4, 28 h5, 29 h6 { 30 font-family: 'Basis Grotesque Pro'; 31 font-weight: 400; 32 padding-top: 0px; 33 margin-top: 0px; 34 padding-bottom: 0px; 35 margin-bottom: 0.25em; 36 } 37 38 h1 { 39 font-size: 55px; 40 } 41 42 h2 { 43 font-size: 42px; 44 } 45 46 h3 { 47 font-size: 34px; 48 } 49 50 h4 { 51 font-size: 26px; 52 } 53 54 h5 { 55 font-size: 21px; 56 } 57 58 h6 { 59 font-size: 16px; 60 } 61 62 a { 63 display: inline; 64 text-decoration: none; 65 color: #ffffff; 66 font-weight: bold; 67 text-decoration: underline; 68 transition: text-decoration-color .1s ease-in-out; 69 text-decoration-color: black; 70 cursor:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAPCAMAAAAxmgQeAAAACVBMVEX///8AAAD///9+749PAAAAAXRSTlMAQObYZgAAAD5JREFUGNN1j9EKADAIAnP//9GjFq6w7iU4DNRsB06cb44TJ+UzYUcniqnqoA6ag/62JhjKIU0rxx1lKveuXJ5UAQs/G/2vAAAAAElFTkSuQmCC) 9 9, auto; 71 } 72 73 a:hover { 74 text-decoration-color: white; 75 } 76 77 a.external:after { 78 content: "→"; 79 color: #00ffff; 80 } 81 82 hr { 83 position: relative; 84 height: 11px; 85 font-size: 0; 86 line-height: 0; 87 overflow: hidden; 88 height: 0px; 89 border: none; 90 border-bottom: 1px solid white; 91 margin-top: 11px; 92 margin-bottom: 11px; 93 } 94 95 code { 96 font-size: 14px; 97 font-family: 'Basis Grotesque Pro Mono'; 98 line-height: 15px; 99 display: inline-block; 100 transform: translateY(-1px) 101 } 102 103 kbd { 104 font-size: 14px; 105 padding: 3px 5px; 106 border: 1px solid white; 107 -webkit-border-radius: 2px; 108 border-radius: 2px; 109 font-family: 'Basis Grotesque Pro Mono'; 110 line-height: 15px; 111 display: inline-block; 112 }