-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
66 lines (63 loc) · 999 Bytes
/
styles.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
* {
box-sizing: border-box;
}
body {
font-family: Helvetica;
font-size: 15pt;
background-color: white;
color:black;
text-align:center;
}
#consent {
display: flex;
max-width: 80%;
margin: 0 auto;
align-items: center;
flex-direction: column;
}
li {
text-align: left;
margin: 15px;
}
#consented {
display: inherit;
}
button {
display: none;
padding: 0.5em;
}
#Instruction1,
#Instruction2,
#Instruction3,
#Instruction4,
#Instruction5 {
display:none;
max-width: 50%;
margin: 0 auto;
}
#canvas_L {
display: none;
background-color: gray;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
#canvas_fixation {
display: none;
background-color: black;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
#occluder {
display: none;
left: 50%;
top: 50%;
}
.shape {
display: none;
width: 55px;
height: 55px;
}