summaryrefslogtreecommitdiffstats
path: root/front/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'front/style.css')
-rw-r--r--front/style.css85
1 files changed, 85 insertions, 0 deletions
diff --git a/front/style.css b/front/style.css
new file mode 100644
index 0000000..3ef2ea1
--- /dev/null
+++ b/front/style.css
@@ -0,0 +1,85 @@
+@font-face {
+ font-family: 'Anka/Coder';
+ src: url("/AnkaCoderCondensed/AnkaCoder-C87-r.ttf") format('truetype');
+}
+@font-face {
+ font-family: 'Anka/Coder';
+ src: url("/AnkaCoderCondensed/AnkaCoder-C87-i.ttf") format('truetype');
+ font-style: italic;
+}
+@font-face {
+ font-family: 'Anka/Coder';
+ src: url("/AnkaCoderCondensed/AnkaCoder-C87-b.ttf") format('truetype');
+ font-weight: bold;
+}
+@font-face {
+ font-family: 'Anka/Coder';
+ src: url("/AnkaCoderCondensed/AnkaCoder-C87-b.ttf") format('truetype');
+ font-style: italic;
+ font-weight: bold;
+}
+
+body {
+ font-family: "Anka/Coder";
+}
+
+table thead td {
+ font-weight: bold;
+}
+
+table td {
+ padding: 0 0.4em;
+ white-space: nowrap;
+ vertical-align: top;
+}
+
+body {
+ background-color: #111;
+ color: #eee;
+}
+span.i {
+ color: #1d1;
+}
+span.d {
+ color: #d11;
+}
+tr:hover td {
+ background-color: #222;
+}
+
+#settings {
+ border: 0;
+ outline: none;
+ background-color: transparent;
+}
+
+.a-button {
+ color: cyan;
+ text-decoration: none;
+ cursor: pointer;
+}
+
+.a-button:hover {
+ text-decoration: underline;
+}
+
+.a-button-disabled {
+ color: gray;
+ cursor: default;
+}
+
+.a-button-disabled:hover {
+ text-decoration: none;
+}
+
+.input-todo {
+ background-color: inherit;
+ font-family: inherit;
+ font-size: inherit;
+ outline: none;
+ color: #eee;
+ border: solid 1px #444;
+ padding: 3px;
+ border-radius: 2px;
+ margin: 10px;
+} \ No newline at end of file