home · contact · privacy
Improve accounting scripts.
[misc] / todo_templates / base.html
1 {% import 'macros.html' as macros %}
2 <style>
3 body { font-family: monospace; background: white; color: black; }
4 input { font-family: monospace; padding: 0em; margin: 0em; }
5 table.alternating tr:nth-child(even) {
6     background-color: #cccccc;
7 }
8 table.alternating tr:nth-child(odd) {
9     background-color: white;
10 }
11 th, td { vertical-align: top; text-align: left}
12 input[type="number"], td.number { text-align: right; }
13 input[type="checkbox"] { height: 1.3em; width: 1.3em; }
14 th.desc { background: linear-gradient(to bottom, white, grey); }
15 input[type="submit"] { background-color: #cccccc; }
16 button { background-color: #cccccc; }
17 input[type="submit"].update { background-color: #aaffaa; }
18 input[type="submit"].delete { background-color: #ff7777; }
19 div.delete { float: right; }
20 {% block css %}
21 {% endblock %}
22 </style>
23 <body>
24 tasks: <a href="tasks">list</a> <a href="add_task">add</a> | day:
25 <a href="pick_tasks">pick tasks</a>
26 <a href="do_todos">do todos</a>
27 | <a href="calendar">calendar</a>
28 | <a href="reset_cookie">reset cookie</a>
29 <hr />
30 {% block content %}
31 {% endblock %}