-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (71 loc) · 1.21 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
73
74
75
76
77
78
79
80
html
{
height: 100%;
width: 100%;
display: table;
}
body
{
height: 100%;
width: 100%;
display: table-cell;
vertical-align: middle;
background-color: black;
}
input[type=text]
{
width: 67.4vw;
height: 5vw;
text-align: center;
font-size: 3vw;
font-family: Andale Mono, monospace;
font-style: bold;
color: white;
border: solid 0.2vw white;
}
.sentenceArea
{
background-color: black;
}
.SSVEP {
display: inline-block;
width: 15vw;
height: 15vw;
font-size: 3vw;
font-family: Andale Mono, monospace;
font-style: bold;
color: blueviolet;
text-align: center;
outline: none;
word-break: break-all;
display: table-cell;
vertical-align: middle;
/* background: rgba(255,255,255,0.5); */
}
canvas {
position: absolute;
display: block;
top: 0;
left: 0;
z-index: -1;
width: 100vw;
height: 100vh;
}
/* Added by Garrett Flynn */
#options {
position: fixed;
top: 0;
right: 0;
color: black;
width: 200px;
text-align: left;
color: white;
padding: 25px;
background: rgb(38, 38, 38, 0.5);
z-index: 1000;
}
#options button {
width: 100%;
height: auto;
font-size: 10px;
}