summaryrefslogtreecommitdiff
path: root/index.css
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2022-03-18 15:46:02 -0400
committerAdam T. Carpenter <atc@53hor.net>2022-03-18 15:46:02 -0400
commit537f4a8f2c1440237f767626e9a1e6b36d117828 (patch)
treea6b25ac8ed4ea9ceea09e0baf1aebc4da37b3e90 /index.css
parentfd1c3a3fffe69cb5258c7868442d97bb873d5cf9 (diff)
downloadtheuniversityedge-537f4a8f2c1440237f767626e9a1e6b36d117828.tar.xz
theuniversityedge-537f4a8f2c1440237f767626e9a1e6b36d117828.zip
feat: basic scaffold, css, show/hide navigation
Diffstat (limited to 'index.css')
-rw-r--r--index.css29
1 files changed, 29 insertions, 0 deletions
diff --git a/index.css b/index.css
new file mode 100644
index 0000000..37bdccb
--- /dev/null
+++ b/index.css
@@ -0,0 +1,29 @@
+html {
+ font-family: "Vollkorn", serif;
+}
+
+a.closeMenu {
+ float: right;
+ display: none;
+}
+
+#menu:target nav {
+ display: block;
+}
+
+#menu:target a.openMenu {
+ display: none;
+}
+
+a.openMenu {
+ float: right;
+}
+
+#menu:target a.closeMenu {
+ display: block;
+}
+
+nav {
+ background-color: red;
+ display: none;
+}