-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstyles.css
52 lines (52 loc) · 926 Bytes
/
styles.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
.habitt {
border-collapse: collapse;
text-align: center;
table-layout: auto;
width: 100%;
}
.habitt-head {
font-size: .8em;
}
.habitt td {
padding: 0 4px;
vertical-align: top;
}
.habitt .habitt-th {
color: var(--text-normal);
font-size: .6em;
}
.habitt .habitt-td {
position: relative;
color: var(--text-muted);
font-size: .8em;
min-width: 2em;
min-height: 2em;
width: 14.28%;
opacity: .5;
}
.habitt-c {
position: relative;
height: 100%;
}
.habitt-date {
padding-top: 4px;
}
.habitt .habitt-td--disabled {
opacity: .5;
color: var(--text-muted);
}
.habitt .habitt-td--checked {
opacity: 1;
color: var(--text-normal);
}
.habitt-dots {
min-height: 20px;
padding: 0 0 4px;
}
.habitt-error {
background-color: var(--background-primary-alt);
padding: 1em;
margin: 0.5em 0;
overflow: auto;
border-radius: 0.3em;
}