-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
127 lines (103 loc) · 2.51 KB
/
style.css
File metadata and controls
127 lines (103 loc) · 2.51 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
:root {
--text-size-sm: 75%;
--text-size-md: 100%;
--text-size-lg: 125%;
--text-size: var(--text-size-md);
--passage-text-display: 'block';
--verse-number-display: 'inline';
}
#speech-rate, #max-words {
width: 3rem;
text-align: right;
border: none;
}
.text-size-sm {
font-size: var(--text-size-sm);
}
.text-size-md {
font-size: var(--text-size-md);
}
.text-size-lg {
font-size: var(--text-size-lg);
}
.passage-text {
display: var(--passage-text-display);
}
.verse-number {
display: var(--verse-number-display);
}
.bg-Primary { background-color: #836ABC; }
.bg-Junior { background-color: #4B67B2; }
.bg-Senior { background-color: #288E93; }
.division-translation {
font-size: 120%;
padding: 0.7rem 1rem;
}
.narrow {
max-width: 40rem;
}
div#passages {
transition: opacity 0.25s ease-in-out;
margin-top: 1rem;
margin-bottom: 60%;
}
div.passage {
cursor: default !important;
}
.passage-number {
font-size: 120%;
}
.card-body {
font-size: var(--text-size, 1rem) !important;
}
.card-title {
font-size: 125%;
}
p.card-text {
text-align: justify;
text-justify: inter-word;
}
.word-error {
text-decoration: orangered wavy underline !important;
}
.word-warning {
background-color: var(--bs-warning-border-subtle) !important;
}
.card-passed .card-header, .card-passed .card-footer {
background-color: var(--bs-danger-bg-subtle) !important;
}
.card-completed .card-header, .card-completed .card-footer {
background-color: var(--bs-success-bg-subtle) !important;
}
.btn-card-complete {
--bs-btn-color: #fff;
--bs-btn-bg: #57a581;
--bs-btn-border-color: #57a581;
--bs-btn-hover-color: #fff;
--bs-btn-hover-bg: #48896b;
--bs-btn-hover-border-color: #48896b;
--bs-btn-focus-shadow-rgb: 60,153,110;
--bs-btn-active-color: #fff;
--bs-btn-active-bg: #48896b;
--bs-btn-active-border-color: #48896b;
--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
--bs-btn-disabled-color: #fff;
--bs-btn-disabled-bg: #57a581;
--bs-btn-disabled-border-color: #57a581;
}
.btn-card-pass {
--bs-btn-color: #fff;
--bs-btn-bg: #c14450;
--bs-btn-border-color: #c14450;
--bs-btn-hover-color: #fff;
--bs-btn-hover-bg: #a53a44;
--bs-btn-hover-border-color: #a53a44;
--bs-btn-focus-shadow-rgb: 225,83,97;
--bs-btn-active-color: #fff;
--bs-btn-active-bg: #b02a37;
--bs-btn-active-border-color: #a52834;
--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
--bs-btn-disabled-color: #fff;
--bs-btn-disabled-bg: #c14450;
--bs-btn-disabled-border-color: #c14450;
}