-
Notifications
You must be signed in to change notification settings - Fork 0
/
load.css
44 lines (40 loc) · 797 Bytes
/
load.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
html,body {
margin:0;
padding:0;
font-family: 'Press Start 2P', cursive;
cursor: url(image/cursor.cur), auto;
}
section {
background:linear-gradient(
rgba(0, 0, 0, 0.5),
rgba(0, 0, 0, 0.5)
), url(image/bg.gif);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
width: 100vw;
min-height: 100vh;
display: flex;
align-items: center;
color: #fff;
}
section div {
width: 100%;
text-align: center;
}
#gameTitle {
display:block;
width: 100%;
text-align: center;
font-size: 5vw;
text-shadow: -5px 0 black, 0 5px black, 5px 0 black, 0 -5px black;
}
#press {
animation: press 1.5s infinite alternate;
font-size: 2vw;
}
@keyframes press {
100% {opacity: 1;}
60% {opacity: 1;}
0% {opacity: 0;}
}