summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
Diffstat (limited to 'static')
-rw-r--r--static/Hasklug.otfbin0 -> 3379568 bytes
-rw-r--r--static/Inconsolata.otfbin0 -> 66144 bytes
-rw-r--r--static/style.css70
3 files changed, 70 insertions, 0 deletions
diff --git a/static/Hasklug.otf b/static/Hasklug.otf
new file mode 100644
index 0000000..4054c4a
--- /dev/null
+++ b/static/Hasklug.otf
Binary files differ
diff --git a/static/Inconsolata.otf b/static/Inconsolata.otf
new file mode 100644
index 0000000..19f94c7
--- /dev/null
+++ b/static/Inconsolata.otf
Binary files differ
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;
+}