summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'style.css')
-rw-r--r--style.css26
1 files changed, 24 insertions, 2 deletions
diff --git a/style.css b/style.css
index e2981cb..12f5986 100644
--- a/style.css
+++ b/style.css
@@ -1,5 +1,6 @@
:root {
--color-text: #ddd;
+ --color-link: #8fc;
}
body {
@@ -15,7 +16,7 @@ dialog {
a,
a:visited {
- color: #8fc;
+ color: var(--color-link);
}
h1,
@@ -219,7 +220,7 @@ input[type='checkbox'] {
summary {
cursor: pointer;
}
-#title {
+#top-area {
vertical-align: middle;
font-weight: bold;
font-size: 0.5cm;
@@ -227,6 +228,9 @@ summary {
#title-icon {
height: 1cm;
}
+#creation-buttons {
+ margin-top: 0.2em;
+}
#resolution-form input[type='number'] {
width: 4em;
}
@@ -326,3 +330,21 @@ th {
margin: 0;
padding: 0.2em;
}
+
+.creation-entry {
+ cursor: pointer;
+ border-bottom: 2px solid white;
+ padding: 6px;
+}
+
+.creation-entry:hover {
+ background: #fff4;
+}
+
+.creation-entry-title {
+ color: var(--color-link);
+}
+
+.creation-entry-last-viewed {
+ font-style: italic;
+}