static/style.css
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
@font-face { font-family: "Hurmit"; format("opentype"); src: url("fonts/HurmitNerdFontMono-Regular.otf"); } @font-face { font-family: "Hurmit"; format("opentype"); src: url("fonts/HurmitNerdFontMono-Bold.otf"); font-weight: bold; } @font-face { font-family: "Hurmit"; format("opentype"); src: url("fonts/HurmitNerdFontMono-Italic.otf"); font-style: italic; } @font-face { font-family: "Hurmit"; format("opentype"); src: url("fonts/HurmitNerdFontMono-Italic.otf"); font-style: oblique; } @font-face { font-family: "Hurmit"; format("opentype"); src: url("fonts/HurmitNerdFontMono-BoldItalic.otf"); font-weight: bold; font-style: oblique; } @font-face { font-family: "Hurmit"; format("opentype"); src: url("fonts/HurmitNerdFontMono-BoldItalic.otf"); font-weight: bold; font-style: italic; } body { font-family: Hurmit,monospace ; font-size: 13pt; background: #000007 ; color: #DDDDCE ; display: grid; justify-content: center; } main { width: 800px ; margin: auto ; margin-top: 0; grid-column-start: 2; grid-row-start: 1; grid-row-end: 3; } .outline { width: auto; max-width: 300px; grid-column-start: 1; grid-column-end: 1; grid-row-start: 1; grid-row-end: 2; position: sticky; top: 0; } .root_link{ color: #9c75dd; } img { max-width: 100% ; } h1 { color: #9c75dd; text-align: center ; text-transform: uppercase; font-size: 13pt; } h2 { color: #cd749c; text-align: center ; text-transform: uppercase; font-size: 13pt; } h3 { color: #d5a8e3; text-align: center ; text-transform: uppercase; font-size: 13pt; } a:link { color: #a9d1df; text-decoration: none; } a:hover { color: #849da2; text-decoration: underline; } a:visited { color: #849da2; } footer { text-align: center ; grid-column-start: 2; grid-column-end: 2; grid-row-start: 3; } ul li::marker { content: '🜁 '; margin: 0; padding: 0; } th, td, table { border: 1px solid; border-collapse: collapse; text-align: left; padding: 3pt; } @media only screen and (max-width: 1100px) { .outline { display:none } } |