Parent
[>]
1article { line-height: 1.6; word-wrap: break-word; } 2 3article h1, article h2, article h3, 4article h4, article h5, article h6 { 5 margin: 1.5rem 0 .5rem; 6 font-family: var(--font-heading); 7 font-weight: 600; 8 color: var(--emphasized); 9} 10 11article h1 { font-size: 2em; border-bottom: 1px solid var(--highlight); padding-bottom: .3em; } 12article h2 { font-size: 1.5em; border-bottom: 1px solid var(--highlight); padding-bottom: .3em; } 13article h3 { font-size: 1.25em; } 14article h4 { font-size: 1em; } 15 16article p { margin: 0 0 1rem; } 17 18article a { color: var(--blue); text-decoration: none; } 19article a:hover { text-decoration: underline; text-underline-offset: .2rem; } 20 21article strong, article b { font-weight: 600; } 22article em, article i { font-style: italic; } 23 24article ul, article ol { margin: 0 0 1rem; padding-left: 2rem; } 25article li { margin: .25rem 0; } 26article li > p { margin-top: .25rem; } 27 28article blockquote { 29 margin: 0 0 1rem; 30 padding: 0 1em; 31 color: var(--secondary); 32 border-left: .25em solid var(--highlight); 33} 34article blockquote > :first-child { margin-top: 0; } 35article blockquote > :last-child { margin-bottom: 0; } 36 37article hr { 38 height: .25em; 39 margin: 1.5rem 0; 40 padding: 0; 41 border: 0; 42 background-color: var(--highlight); 43} 44 45article img { max-width: 100%; box-sizing: content-box; } 46 47article code { 48 font-family: var(--font-mono); 49 padding: .2em .4em; 50 background-color: var(--highlight); 51 border-radius: 4px; 52 white-space: break-spaces; 53} 54 55article pre { 56 font-family: var(--font-mono); 57 line-height: 1.45; 58 padding: 1rem; 59 margin: 0 0 1rem; 60 overflow-x: auto; 61 min-width: 0; 62 background-color: var(--highlight); 63 border-radius: 6px; 64} 65 66article pre code { 67 font-size: 100%; 68 padding: 0; 69 background: transparent; 70 border-radius: 0; 71 white-space: pre; 72} 73 74article table { 75 border-spacing: 0; 76 border-collapse: collapse; 77 display: block; 78 width: max-content; 79 max-width: 100%; 80 overflow-x: auto; 81 margin: 0 0 1rem; 82} 83 84article table th { 85 font-weight: 600; 86} 87 88article table th, 89article table td { 90 padding: 6px 13px; 91 border: 1px solid var(--highlight); 92} 93 94article table tr { border-top: 1px solid var(--highlight); } 95article table tr:nth-child(2n) { background-color: var(--highlight); }