hacktheplanet.css (873B)
1 * { 2 font-family: monaco, monospace; 3 margin: 0; 4 padding: 0; 5 } 6 7 body { 8 margin: 0 auto; 9 padding: 1em; 10 width: 80ch; 11 background: #181818; 12 color: #e8e8e8; 13 counter-reset: listcount 14 } 15 16 a { 17 color: #6f99ea; 18 } 19 20 a:visited { 21 color: purple; 22 } 23 24 ul { 25 list-style: none; 26 counter-reset: listcount; 27 margin-bottom: 1em; 28 margin-top: 1em; 29 margin-left: 2ch; 30 } 31 32 li::before { 33 counter-increment: listcount; 34 content: "0" counter(listcount) ": "; 35 color: #d7dc4b; 36 } 37 38 code { 39 color: #ce664a; 40 font-style: italic; 41 } 42 43 .outline-2 { 44 /* margin-left: 2ch;*/ 45 margin-top: 1em; 46 margin-bottom: 1em; 47 } 48 49 .outline-3 { 50 margin-left: 2ch; 51 margin-top: 1em; 52 margin-bottom: 1em; 53 } 54 55 .outline-4 { 56 margin-left: 2ch; 57 margin-top: 1em; 58 margin-bottom: 1em; 59 } 60 61 p { 62 margin-bottom: 1em; 63 } 64 65 pre.src { 66 overflow-x: auto; 67 overflow-y: visible; 68 } 69 70 pre { 71 box-shadow: none; 72 }