summaryrefslogtreecommitdiff
path: root/styles/style.css
diff options
context:
space:
mode:
authorcflip <36554078+cflip@users.noreply.github.com>2021-08-10 16:47:28 -0600
committercflip <36554078+cflip@users.noreply.github.com>2021-08-10 16:47:28 -0600
commitdb730ccd4c102badb48e6752de829c436042e5e6 (patch)
tree1640b50a61876184f0bc086242d4e4d43922f784 /styles/style.css
parent39f4d2134f332d3d6577f8cf5b3f4b9d4f665c41 (diff)
Small style update
Diffstat (limited to 'styles/style.css')
-rwxr-xr-xstyles/style.css33
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