summaryrefslogtreecommitdiffhomepage
path: root/page.css
diff options
context:
space:
mode:
Diffstat (limited to 'page.css')
-rw-r--r--page.css75
1 files changed, 75 insertions, 0 deletions
diff --git a/page.css b/page.css
new file mode 100644
index 0000000..99e6b01
--- /dev/null
+++ b/page.css
@@ -0,0 +1,75 @@
+body {
+ background: #19191b;
+ color: #ccc;
+ font-family: sans-serif;
+}
+
+body > * {
+ max-width: 42em;
+ margin: 0 auto;
+}
+
+header {
+ text-align: center;
+}
+
+section {
+ border: 1px solid #242529;
+ padding: 0.6em;
+}
+
+section > :first-child {
+ margin-top: 0;
+}
+
+h1 {
+ color: #5a5252;
+}
+
+h2 {
+ background: #242529;
+ padding: 0.2em 0.5em;
+}
+
+table {
+ width: 100%;
+ border: 1px solid #59595b;
+ padding: 0.2em;
+ border-spacing: 0;
+}
+
+table td:last-child {
+ text-align: right;
+}
+
+tr:hover {
+ background: #353331;
+}
+
+a:link {
+ color: #a96e3d;
+}
+
+a:hover {
+ color: #e69958;
+}
+
+a:visited {
+ color: #bd402d;
+}
+
+a:visited:hover {
+ color: #e44e37;
+}
+
+a:active,
+a:visited:active {
+ color: #e675e6;
+}
+
+footer {
+ text-align: center;
+ color: #777;
+ font-size: 80%;
+ padding: 1em;
+} \ No newline at end of file