-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (64 loc) · 910 Bytes
/
Copy pathstyles.css
File metadata and controls
64 lines (64 loc) · 910 Bytes
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
html, body {
width: 100%;
padding: 0;
margin: 0;
background-color: darkblue
}
body > * {
width: 100%;
box-sizing: border-box;
}
header {
text-align: center;
color: white;
font-size: 1.5em;
padding: 0.5em;
}
main {
padding: 1em;
background-color: #fffae4;
}
main > * {
display: block;
width: 100%;
max-width: 1000px;
margin: 15px auto;
box-sizing: border-box;
display: block;
}
main > :first-child {
margin-top: 0;
}
main > :last-child {
margin-bottom: 0;
}
#instructions p {
padding: 0;
margin: 0;
}
main p {
text-align: center;
}
main p.transition {
font-size: 1.4em;
}
main textarea {
height: 10em;
font-family: 'Times New Roman', Times, serif;
font-size: 12pt;
width: 100%;
}
#speaking-controls {
width: fit-content;
}
footer {
color: white;
padding: 0.5em;
font-size: 10pt;
}
footer .left {
float: left;
}
footer .right {
float: right;
}