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