-
Notifications
You must be signed in to change notification settings - Fork 0
/
evaluation.css
140 lines (126 loc) · 2.36 KB
/
evaluation.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
body {
background-color: #ddd;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.xaxis {
position: absolute;
height: 50%;
width: 100%;
z-index: 1;
border-bottom: 1px solid #777;
}
.yaxis {
position: absolute;
height: 100%;
width: 50%;
z-index: 1;
border-right: 1px solid #777;
}
.xplus {
position: absolute;
font-size: 2rem;
top: 50%;
left: calc(50% + 250px + 3px);
transform: translate(0, -50%);
z-index: -1;
color: #777;
cursor: initial;
}
.xminus {
position: absolute;
font-size: 2rem;
top: 50%;
left: calc(50% - 250px - 3px);
transform: translate(-100%, -50%);
z-index: -1;
color: #777;
cursor: initial;
}
.yplus {
position: absolute;
font-size: 2rem;
top: calc(50% - 250px - 0px);
left: 50%;
transform: translate(-50%, -100%);
z-index: -1;
color: #777;
cursor: initial;
}
.yminus {
position: absolute;
font-size: 2rem;
top: calc(50% + 250px + 0px);
left: 50%;
transform: translate(-50%, 0);
z-index: -1;
color: #777;
cursor: initial;
}
#main-container {
position: relative;
height: 60vh;
width: 100%;
}
#movie {
position: fixed;
top: 0;
left: 0;
object-fit: contain;
width: 100vw;
height: 100vh;
vertical-align: bottom;
background-color: black;
/* position: absolute;
width: 1200px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition: all 1s 1s linear; */
}
#russell {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
visibility: hidden;
opacity: 0;
transition: all 0.5s 0s linear;
}
#russell-rec {
position: absolute;
width: 500px;
height: 500px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: white;
border: 2px solid black;
cursor: crosshair;
}
#btn-next-back-group {
visibility: hidden;
opacity: 0;
transition: all 0.5s 5s linear;
}
#russell-point {
position: absolute;
width: 5px;
height: 5px;
border-radius: 50%;
background: red;
}
.ended {
visibility: hidden !important;
display: block;
opacity: 0;
}
#russell.active, #btn-next-back-group.active {
visibility: visible;
opacity: 1;
}