blob: 376bd421ed95fbf4a9b2d1b4ada45bc4db652300 (
plain)
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
|
body {
background: linear-gradient(60deg, skyblue, 70%, blue) no-repeat fixed;
background-size: cover;
overflow: hidden;
}
canvas {
background-color: aliceblue;
border-radius: 20px;
}
#instructions {
position: absolute;
left: 20px;
border: 3px dashed orange;
padding: 4px;
pointer-events: none;
}
#check {
position: absolute;
display: none;
}
#reset {
position: absolute;
}
#robot {
transform-origin: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
pointer-events: none;
}
#cross {
visibility: hidden;
position: absolute;
opacity: 1;
pointer-events: none;
}
|