From 9c694db396365a9fa512a65450a1486922fdd3e3 Mon Sep 17 00:00:00 2001 From: Andrew Date: Sun, 20 Jun 2021 14:57:30 +0400 Subject: Initial commit --- static/style.css | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 static/style.css (limited to 'static/style.css') 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; +} -- cgit v1.2.3