-
Notifications
You must be signed in to change notification settings - Fork 1
/
chores.css
79 lines (66 loc) · 1.14 KB
/
chores.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
table.cal {
background: #9090ff;
border: .25em solid black;
width: 100%;
border-collapse: collapse;
}
table.cal th {
width: 12.5%;
height: 4em;
border: .25em solid black;
padding-left: 1em;
padding-right: 1em;
padding-top: 2em;
padding-bottom: 2em;
}
table.cal td {
background: white;
border: .25em solid black;
color: white;
text-align: center;
}
table.cal td div {
height: 100%;
width: 100%;
}
table.cal td.undone {
background: red;
}
table.cal td.done {
background: green;
}
table.cal th corner {
background: yellow;
}
table.cal th div.left {
text-align: left;
float: left;
}
table.cal th div.right {
text-align: right;
}
table.cal td.chore {
background: yellow;
color: black;
font-size: 1.1em;
}
table.pay {
background: white;
border: .25em solid blue;
border-collapse: collapse;
}
table.pay th {
font-size: larger;
color: green;
border: .25em solid blue;
padding: .3em;
}
table.pay td {
font-size: large;
color: black;
border: .25em solid blue;
padding: .3em;
}
table.pay td.num {
text-align: right;
}