-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (72 loc) · 1.08 KB
/
style.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
span.output {
font-size: 100pt;
padding-right: 0.3em;
}
body {
font-family: Verdana;
}
.header {
position: fixed;
top: 0px;
left: 0px;
padding: 5px;
width: 100%;
height: 90px;
border-bottom: thin solid grey;
background-color: white;
opacity: 1;
z-index: 1;
}
.logo {
width: 250px;
float: right;
padding-right: 20px;
padding-top: 5px;
}
.help {
float: right;
color: #777;
font-size: 10pt;
width: 600px;
padding-right: 1em;
}
.control {
font-size: 60pt;
user-select: none;
}
#mic {
color: lightgrey;
}
#mic.on {
color: red;
}
#out {
position: absolute;
top: 95px;
width: 100%;
word-wrap: break-word;
}
span.output:not(.final) {
color: #AAA;
}
span.output.final {
color: black;
}
div.newline {
display:block;
}
div.paragraph {
display: block;
padding-bottom: 2em;
}
#incompatible {
display: none;
position: fixed;
top: 200px;
left: 5%;
width: 90%;
border: thick solid black;
border-radius: 10px;
padding: 1em;
font-size: 20pt;
}