summaryrefslogtreecommitdiffstats
path: root/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'style.css')
-rw-r--r--style.css67
1 files changed, 67 insertions, 0 deletions
diff --git a/style.css b/style.css
index 92299ce..b33300a 100644
--- a/style.css
+++ b/style.css
@@ -22,6 +22,17 @@ header {
border-bottom: thin solid #d6d6d6;
border-top-left-radius: .75em;
border-top-right-radius: .75em;
+ margin: 0
+}
+
+footer {
+ color: #333;
+ font-size: 80%;
+ text-align: right;
+ font-family: monospace;
+ background-color: #ddd;
+ padding: .5em 1em;
+ border-top: thin solid #a0a0a0;
}
article {
@@ -29,6 +40,62 @@ article {
font-size: 85%;
}
+menu{
+ margin: 0;
+ padding: 0.5em;
+ background-color: #ddd;
+ border-top: thin solid #a0a0a0;
+ border-bottom: thin solid #a0a0a0;
+}
+
+menu ul{
+ list-style: none;
+ padding: 0
+}
+
+menu li{
+ display: inline-block;
+ padding-left: 0.5em
+}
+
+menu li:before{
+ content: "//";
+ margin-right: 0.5em;
+}
+
+menu li:first-child:before{
+ content: "";
+ margin: 0
+}
+
+menu a{
+ text-decoration: none;
+}
+
+header h1{
+ margin-bottom: 0
+}
+
+article h1{
+ text-align: center;
+ font-size: 200%
+}
+
+table{
+ border-collapse: collapse;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+td{
+ border: thin solid;
+ padding: 0.3em
+}
+
+tr:nth-child(even) td{
+ background-color: #9d9
+}
+
.group{
float: left;
padding: 1em;