1// Typography 2 3b, 4strong { 5 font-weight: bold; 6} 7 8p { 9 margin-top: 0; 10 line-height: 1.5rem; 11} 12 13// Headers 14h1, 15h2, 16h3, 17h4, 18h5 { 19 line-height: 1.25; 20 color: #333; 21} 22 23h1, .h1 { 24 font-size: 2.25rem; 25 font-weight: 500; 26 padding-top: .5rem; 27} 28 29h2, .h2 { 30 font-size: 1.25rem; 31 font-weight: bold; 32} 33 34h3, .h3 { 35 font-size: 1rem; 36 font-weight: bold; 37} 38 39h4, .h4 { 40 font-size: .875rem; 41 font-weight: bold; 42} 43 44h5, .h5 { 45 font-size: .875rem; 46 font-weight: 500; 47 color: $darkgrey; 48} 49 50// Fonts 51.courier-normal { 52 font-family: "Courier New", Helvetica, arial, sans-serif; 53} 54.courier-bold { 55 font-family: "Courier New", Helvetica, arial, sans-serif; 56 font-weight: 700; 57 margin-bottom: 0; 58}