-
Notifications
You must be signed in to change notification settings - Fork 68
/
styles_app.css
88 lines (88 loc) · 2.23 KB
/
styles_app.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
80
81
82
83
84
85
86
87
88
.checklist-indent-0 {
--padding-start: 8px;
}
.checklist-indent-1 {
--padding-start: 18px;
}
.checklist-indent-2 {
--padding-start: 28px;
}
.checklist-indent-3 {
--padding-start: 38px;
}
.checklist-indent-4 {
--padding-start: 48px;
}
.checklist-indent-5 {
--padding-start: 58px;
}
.checklist-indent-6 {
--padding-start: 68px;
}
.checklist-indent-7 {
--padding-start: 78px;
}
.checklist-indent-8 {
--padding-start: 88px;
}
.checklist-indent-9 {
--padding-start: 98px;
}
.checklist-indent-10 {
--padding-start: 108px;
}
.checklist-colour-red ion-label .checklist-item-label,
.checklist-colour-red ion-checkbox .checklist-item-label {
--color: #ca3120;
}
html.dark .checklist-colour-red ion-label .checklist-item-label,
html.dark .checklist-colour-red ion-checkbox .checklist-item-label {
--color: #d55a4d;
}
.checklist-colour-orange ion-label .checklist-item-label,
.checklist-colour-orange ion-checkbox .checklist-item-label {
--color: #f98012;
}
.checklist-colour-green ion-label .checklist-item-label,
.checklist-colour-green ion-checkbox .checklist-item-label {
--color: #357a32;
}
html.dark .checklist-colour-green ion-label .checklist-item-label,
html.dark .checklist-colour-green ion-checkbox .checklist-item-label {
--color: #5d955b;
}
.checklist-colour-purple ion-label .checklist-item-label,
.checklist-colour-purple ion-checkbox .checklist-item-label {
--color: #c400f0;
}
html.dark .checklist-colour-purple ion-label .checklist-item-label,
html.dark .checklist-colour-purple ion-checkbox .checklist-item-label {
--color: #d61fff;
}
.checklist-item ion-label .checklist-item-label,
.checklist-item ion-checkbox .checklist-item-label {
display: flex;
flex-direction: row;
align-items: center;
font-size: 16px;
}
.checklist-item ion-label .checklist-item-label.item-heading,
.checklist-item ion-checkbox .checklist-item-label.item-heading {
font-weight: bold;
}
.checklist-url-button {
min-width: unset;
min-height: unset;
}
.checklist-url-button ion-icon {
height: 18px;
}
.checklist-teachermark {
margin-right: 4px;
}
.checklist-item .checklist-comment {
margin: 8px 12px 0px 12px;
padding: 4px;
background-color: #ffffb0;
border: solid black 1px;
}