-
Notifications
You must be signed in to change notification settings - Fork 0
/
anim.css
61 lines (50 loc) · 878 Bytes
/
anim.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
html,
body {
height: 100%;
}
body {
background-color: #4a4a4a;
background: radial-gradient(#a88, #234);
overflow: hidden;
}
:root {
--margin: 0;
}
.container {
position: absolute;
top: var(--margin);
bottom: var(--margin);
left: var(--margin);
right: var(--margin);
}
.nextStepButton {
display: none;
position: absolute;
top: 0;
left: 0;
-webkit-appearance: none;
user-select: none;
font-size: 16px;
outline: none;
padding: .25em .5em;
border-radius: 2px;
cursor: pointer;
border: 1px solid #000;
box-shadow: 0 0 0 1px #fff;
background-color: rgba(0, 0, 0, .5);
color: #fff;
}
.nextStepButton:hover {
box-shadow: 0 0 0 1px #000;
background-color: #f0f0f0;
color: #000;
}
.underline {
text-decoration: underline;
}
canvas {
width: 100%;
height: 100%;
object-fit: contain;
image-rendering: pixelated;
}