summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorJohannes Herman <johannes.herman@gmail.com>2025-12-11 06:49:19 +0100
committerJohannes Herman <johannes.herman@gmail.com>2025-12-11 06:49:19 +0100
commitc14aabfd17c85632bd68db60867edb3fb662c7e7 (patch)
treed3fc7a1c44bba6fa56c39bd77013911151977532 /style.css
initial commit
Diffstat (limited to 'style.css')
-rw-r--r--style.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..7b0b8b7
--- /dev/null
+++ b/style.css
@@ -0,0 +1,27 @@
+body {
+ font-family: Georgia, 'Times New Roman', Times, serif;
+ margin: 40px;
+ background-color: #f9f9f9;
+}
+table {
+ width: 100%;
+ border-collapse: collapse;
+ margin-top: 20px;
+}
+th, td {
+ padding: 12px;
+ border: 1px solid #ccc;
+ text-align: left;
+}
+th {
+ background-color: #ddd;
+ font-weight: normal;
+}
+td {
+ background-color: #eee;
+ font-weight: normal;
+}
+a {
+ color: #3366cc;
+ text-decoration: none;
+}