]> git.scottworley.com Git - vopamoi/blob - vopamoi.css
Show dates on non-todo-state tasks
[vopamoi] / vopamoi.css
1 input {
2 width: calc(100% - 8px); /* 8px to account for the default padding and border */
3 }
4 .tag {
5 float: right;
6 margin-left: 1em;
7 font-size: 80%;
8 }
9 span.tag {
10 color: white;
11 padding: 1px .5em;
12 font-weight: bold;
13 }
14 input.tag {
15 width: 7em;
16 border: none;
17 }
18 .task {
19 clear: right;
20 }
21 .statedate {
22 margin-right: 0.5em;
23 }
24 #ui {
25 padding: 15px 10px;
26 }
27 body:before, body:after {
28 content: "";
29 position: fixed;
30 background: var(--view-state-indicator-color);
31 left: 0;
32 right: 0;
33 height: 5px;
34 }
35 body:before {
36 top: 0;
37 }
38 body:after {
39 bottom: 0;
40 }
41 body {
42 margin: 0;
43 min-height: 100vh;
44 border-left: 5px solid var(--view-state-indicator-color);
45 border-right: 5px solid var(--view-state-indicator-color);
46 }