-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRatatat.css
More file actions
124 lines (116 loc) · 1.91 KB
/
Copy pathRatatat.css
File metadata and controls
124 lines (116 loc) · 1.91 KB
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
body,
html {
height: 100%;
margin: 0;
font-family: "Hammersmith One", sans-serif;
}
/* Scale canvas with resize attribute to full size */
canvas[resize] {
background-color: deeppink;
width: 100%;
height: 100%;
}
header {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
width: 100vw;
position: fixed;
}
#instructions {
max-width: 30vw;
min-height: 10vh;
font-size: 2.5rem;
font-weight: 400;
text-align: center;
animation: fadeout 10s;
opacity: 0;
}
@keyframes fadeout {
0% {
color: rgb(25, 25, 134);
opacity: 100%;
}
50% {
color: white;
opacity: 100%;
}
70% {
opacity: 80%;
color: lawngreen;
}
100% {
opacity: 0;
color: lawngreen;
}
}
footer {
position: absolute;
bottom: 3vh;
margin: auto 0;
width: 100%;
font-size: 0.8rem;
text-align: center;
animation: foot-fade 10s;
animation-delay: 3s;
opacity: 0;
font-family: sans-serif;
font-weight: 100;
}
footer a {
color: lawngreen;
text-decoration: none;
}
@keyframes foot-fade {
0% {
color: deeppink;
opacity: 0;
}
20% {
opacity: 100%;
color: white;
}
80% {
opacity: 100%;
}
100% {
opacity: 0;
color: white;
}
}
#touchscreen-info {
display: none;
}
@media (hover: none) and (pointer: coarse) {
body {
background: darkslategrey;
}
canvas {
display: none;
}
header {
display: none;
}
footer {
animation: none;
opacity: 100%;
color: white;
}
#touchscreen-info {
display: block;
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
#touchscreen-info p {
color: white;
font-size: 2.5rem;
padding: 2rem;
margin: 0;
max-width: 800px;
}
}