summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorKjetil Orbekk <kjetil.orbekk@gmail.com>2020-02-06 07:54:02 -0500
committerKjetil Orbekk <kjetil.orbekk@gmail.com>2020-02-06 07:54:06 -0500
commit771de742576ca128604246a1252d5d126330abb0 (patch)
tree3e43ece627bc2bda622e103347a0ed0cad102404 /static
parentcbe2ff86f1a6873b88e314011ee64b6c25f3359c (diff)
CSS styling of sidebar
Diffstat (limited to 'static')
-rw-r--r--static/default.css29
1 files changed, 24 insertions, 5 deletions
diff --git a/static/default.css b/static/default.css
index ad13930..a35597c 100644
--- a/static/default.css
+++ b/static/default.css
@@ -30,29 +30,48 @@ footer {
/* Style */
body {
background-color: #c0dee2;
- font-family: sans-serif;
+ font-family: helvetica, sans-serif;
}
header > h1 {
- font-size: 20pt;
+ font-size: 18pt;
text-align: center;
+ padding: 0;
+ margin: 4px;
+}
+
+nav h2 {
+ font-size: 14pt;
+ font-weight: normal;
+ margin: 0 8px 0 0;
+ padding: 8px 16px;
+ background-color: #eee;
}
nav ul {
list-style-type: none;
- margin: 0;
+ margin: 0 0 8px 0;
padding: 0;
}
nav li a {
display: block;
color: #000;
- background-color: #eee;
+ background-color: #fff;
padding: 8px 16px;
- margin: 0 8px 8px 0;
+ margin: 0 8px 0 0;
text-decoration: none;
+ font-size: 12pt;
+}
+
+nav li a:hover {
+ background-color: #ccc;
}
main {
background-color: #eee;
}
+
+footer {
+ text-align: center;
+}