summaryrefslogtreecommitdiff
path: root/static/css/extra-style.css
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2020-12-05 22:51:37 +0100
committerEkaitz Zarraga <ekaitz@elenq.tech>2020-12-05 22:51:37 +0100
commit58d56dc9dae201d89a4911e125099f1f41780eab (patch)
treea0cc19885b696f7160f9ee57b0920bd604ee6ab5 /static/css/extra-style.css
First version of the website
Diffstat (limited to 'static/css/extra-style.css')
-rw-r--r--static/css/extra-style.css31
1 files changed, 31 insertions, 0 deletions
diff --git a/static/css/extra-style.css b/static/css/extra-style.css
new file mode 100644
index 0000000..c7a7f06
--- /dev/null
+++ b/static/css/extra-style.css
@@ -0,0 +1,31 @@
+.summary{
+ font-size: 115%;
+ padding-top: 2rem;
+}
+
+#hamburger, #hamburger-label{
+ display: none;
+}
+
+#hamburger-label{
+ font-size: 180%;
+ cursor: pointer;
+}
+
+.active{
+ text-decoration: underline;
+}
+
+.mainheader{position: relative;}
+
+@media (max-width: 800px){
+ #hamburger-label {
+ display: inline-block;
+ }
+ .navbar-contents {
+ display: none;
+ }
+ input#hamburger:checked ~ .navbar-contents {
+ display: block;
+ }
+}