-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
87 lines (77 loc) · 1.3 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
81
82
83
84
85
86
87
.display_stage {
position: fixed;
background: #900;
left: 5vw;
top: 2vh;
height: 94vh;
width: 90vw;
background-color: black;
border-radius: 15px;
border: 1vh solid #D0D0D0;
z-index: 0;
}
#canvas1, #canvas2, #backCanvas1,#backCanvas2 {
display: block;
margin: 0 auto;
}
.leftbox {
width: 600px;
height: 600px;
position:absolute;
top:50%;
left:50%;
margin-right:-50%;
transform: translate(-110%,-50%);
}
.rightbox {
width: 600px;
height: 600px;
position:absolute;
top:50%;
left:50%;
margin-right:-50%;
transform: translate(10%,-50%);
}
.response_div {
width: 40w;
height: 8vw;
position:absolute;
top:50%;
left:50%;
margin-right:-50%;
transform: translate(-50%,140%);
}
.response_button {
width: 10vw;
height: 10vw;
background: #505050;
margin: 1vw;
position: relative;
color: #fff;
border-radius:15px;
font-size: 24px;
vertical-align:top;
}
.response_button:hover {
color: red;
}
.response_button:active {
background-color: black;
}
.response_button_key {
width: 10vw;
height: 10vw;
background: #505050;
margin: 1vw;
position: relative;
color: #fff;
border-radius:15px;
font-size: 24px;
vertical-align:top;
}
.display_stage > div, .display_stage > p {
color: white;
}
.fixation {
color: grey;
}