diff options
Diffstat (limited to 'styles/style.css')
-rwxr-xr-x | styles/style.css | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/styles/style.css b/styles/style.css index ea2e15b..b04452e 100755 --- a/styles/style.css +++ b/styles/style.css @@ -1,3 +1,9 @@ +body {
+ font-family: sans-serif;
+ font-size: 10pt;
+ color: #333;
+}
+
a {
color: blue;
}
@@ -10,7 +16,30 @@ table { width: 100%;
}
+tr:nth-child(even) {
+ background: #f7f7f7;
+}
+
+tr:nth-child(odd) {
+ background: white;
+}
+
+tr:hover {
+ background: #eee;
+}
+
+th {
+ font-weight: bold;
+ background-color: white;
+}
+
+td {
+ border: none;
+ padding: 0.1em 0.5em 0.1em 0.5em;
+}
+
blockquote {
+ background-color: #ffd;
margin: 8px 40px 14px 18px;
padding: 12px;
border: 1px solid #aa6;
@@ -24,3 +53,7 @@ textarea { overflow: scroll;
resize: none;
}
+
+.header {
+ border-bottom: 1px dashed black;
+}
\ No newline at end of file |