summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
Diffstat (limited to 'static')
-rw-r--r--static/style.css33
1 files changed, 33 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
new file mode 100644
index 0000000..6ec0668
--- /dev/null
+++ b/static/style.css
@@ -0,0 +1,33 @@
+* {
+ margin: 0;
+ padding: 0;
+}
+
+body {
+ width: 50em;
+ margin: 0 auto;
+ font-family: 'Times New Roman', Times, serif;
+}
+
+header {
+ border: 1px solid black;
+ margin: 8px 0;
+ display: flex;
+ flex-direction: column;
+}
+
+header .banner {
+ background-color: seagreen;
+ min-height: 10vh;
+ display: flex;
+ align-items: end;
+ justify-content: end;
+}
+
+header .links {
+ padding: 4px;
+ border-top: 1px solid black;
+ display: flex;
+ flex-direction: row;
+ justify-content: space-around;
+} \ No newline at end of file