home · contact · privacy
Add foreign key restraints, expand and fix tests, add deletion and forking.
[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 th.desc { background: linear-gradient(to bottom, white, grey); }
13 th.asc { background: linear-gradient(to top, white, grey); }
14 input[type="number"], td.number { text-align: right; }
15 input[type="checkbox"] { height: 1.3em; width: 1.3em; }
16 input[type="submit"] { 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 button { background-color: #cccccc; }
21 {% block css %}
22 {% endblock %}
23 </style>
24 <body>
25 tasks: <a href="tasks">review</a> / <a href="add_task">add</a>
26 | <a href="day_todos">day todos</a>
27 | <a href="calendar">calendar</a>
28 | <a href="reset_cookie">reset cookie</a>
29 <hr />
30 {% block content %}
31 {% endblock %}