diff options
| author | Andrew <saintruler@gmail.com> | 2021-06-20 14:57:30 +0400 |
|---|---|---|
| committer | Andrew <saintruler@gmail.com> | 2021-06-20 14:57:30 +0400 |
| commit | 9c694db396365a9fa512a65450a1486922fdd3e3 (patch) | |
| tree | 82c6ab5c7dd87d0043ca6a4f19d1f100f2b6f719 /static/style.css | |
Initial commit
Diffstat (limited to 'static/style.css')
| -rw-r--r-- | static/style.css | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..42f9a6f --- /dev/null +++ b/static/style.css @@ -0,0 +1,70 @@ +@font-face { + font-family: "Hasklug"; + src: url("./Hasklug.otf") format("opentype"); +} + +@font-face { + font-family: "Inconsolata"; + src: url("./Inconsolata.otf") format("opentype"); +} + +* { + font-family: Inconsolata, mono; +} + +h2 { + margin: 5px auto; +} + +hr { + margin: 3px auto; +} + +p { + margin: 10px auto; +} + +p, li { + font-size: 14pt; +} + +body { + background-color: white; + width: 50%; + margin: 30px auto; +} + +@media screen and (max-width: 1600px) { + body { + width: 60%; + } +} + +@media screen and (max-width: 1200px) { + body { + width: 70%; + } +} + +@media screen and (max-width: 1000px) { + body { + width: 80%; + } +} + +@media screen and (max-width: 800px) { + body { + width: 90%; + } +} + +ul { + list-style: none; + padding-left: 20px; +} + +ul li:before { + content: "-"; + position: relative; + left: -10px; +} |