]> git.scottworley.com Git - vopamoi/blame - vopamoi.css
Factor insertInPriorityOrder() out of setPriority()
[vopamoi] / vopamoi.css
CommitLineData
4e05a0a2
SW
1input {
2 width: calc(100% - 8px); /* 8px to account for the default padding and border */
3}
7b5b90b9
SW
4.tag {
5 float: right;
6 margin-left: 1em;
c70b3eed
SW
7 font-size: 80%;
8}
9span.tag {
10 color: white;
11 padding: 1px .5em;
12 font-weight: bold;
7b5b90b9
SW
13}
14input.tag {
15 width: 7em;
634868c9 16 border: none;
7b5b90b9 17}
312acaa8
SW
18.hide {
19 display: none;
20}
73ffc3d0
SW
21.task {
22 clear: right;
23}
b5ac5cc3 24.statedate {
dc472fc5 25 font-size: 80%;
b5ac5cc3 26 margin-right: 0.5em;
dc472fc5
SW
27 padding: 0 .2em;
28 border-radius: 1em;
29}
30.task[data-state=cancelled] > .statedate { background-color: #fee; }
31.task[data-state=deleted] > .statedate { background-color: #ddd; }
32.task[data-state=done] > .statedate { background-color: #efe; }
33.task[data-state=someday-maybe] > .statedate { background-color: #eef; }
34.task[data-state=waiting] > .statedate { background-color: #fef; }
4c532769
SW
35#ui {
36 padding: 15px 10px;
37}
38body:before, body:after {
39 content: "";
40 position: fixed;
41 background: var(--view-state-indicator-color);
42 left: 0;
43 right: 0;
44 height: 5px;
45}
46body:before {
47 top: 0;
48}
49body:after {
50 bottom: 0;
51}
52body {
53 margin: 0;
54 min-height: 100vh;
55 border-left: 5px solid var(--view-state-indicator-color);
56 border-right: 5px solid var(--view-state-indicator-color);
57}