home · contact · privacy
Mostly superficial template design improvements.
[plomtask] / templates / _base.html
1 <!DOCTYPE html>
2 <html>
3 <meta charset="UTF-8">
4 <style>
5 body {
6   font-family: monospace;
7   text-align: left;
8   padding: 0;
9 }
10 input.btn-harmless {
11   color: green;
12 }
13 input.btn-dangerous {
14   color: red;
15 }
16 div.btn-to-right {
17   float: right;
18   text-align: right;
19 }
20 td, th, tr, table {
21   vertical-align: top;
22   margin-top: 1em;
23   padding: 0;
24 }
25 {% block css %}
26 {% endblock %}
27 </style>
28 <body>
29 <a href="day">today</a>
30 <a href="calendar">calendar</a>
31 <a href="conditions">conditions</a>
32 <a href="processes">processes</a>
33 <a href="todos">todos</a>
34 <hr>
35 {% block content %}
36 {% endblock %}
37 </body>
38 </html>