home · contact · privacy
Improve todo accounting script.
[misc] / todo_templates / base.html
index 92cdff01b7482761f9588358ff075f0b200b4daf..b010333d452eaea28b160467398702c0e382d9bd 100644 (file)
@@ -1,6 +1,19 @@
 <style>
-body { font-family: monospace; }
+body { font-family: monospace; background: white; color: black; }
 input { font-family: monospace; padding: 0em; margin: 0em; }
+table.alternating tr:nth-child(even) {
+    background-color: #cccccc;
+}
+table.alternating tr:nth-child(odd) {
+    background-color: white;
+}
+th, td { vertical-align: top; text-align: left}
+input[type="number"], td.number { text-align: right; }
+input[type="checkbox"] { height: 1.3em; width: 1.3em; }
+th.desc { background: linear-gradient(to bottom, white, grey); }
+input[type="submit"] { background-color: #cccccc; }
+button { background-color: #cccccc; }
+input[type="submit"].update { background-color: #aaffaa; }
 {% block css %}
 {% endblock %}
 </style>