-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
43 lines (36 loc) · 862 Bytes
/
main.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
/*. word-active is applied to the current word, and is removed from the previous word, as the audio track is played. */
.word-active {
font-weight: 900;
}
/*. The remainder of CSS is for making this page look nice, but is not functionally necessary */
html,
body {
margin: 0;
padding: 0;
}
body {
padding: 15px;
font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui,
helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial,
sans-serif;
line-height: 1.7;
font-size: 24px;
}
h1 {
font-weight: 900;
font-size: 48px;
line-height: 1.2;
}
.transcript {
font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console,
monospace;
}
.sr-only:not(:focus):not(:active) {
clip: rect(0 0 0 0);
clip-path: inset(50%);
height: 1px;
overflow: hidden;
position: absolute;
white-space: nowrap;
width: 1px;
}