-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
53 lines (46 loc) · 878 Bytes
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
user-select: none;
}
body{
overflow: hidden;
}
section{
height: 100vh;
overflow: hidden;
background: #091921;
}
section span{
position: absolute;
top: -1000px;
background: white;
/* border-radius: 50%; */
background-size: cover;
animation: anime 5.5s linear forwards;
/* animation-iteration-count: infinite; */
/* animation-fill-mode: forwards; */
}
@keyframes anime {
0% {
transform: translateY(555px);
}
50% {
opacity: 1;
}
100% {
transform: translateY(1000%);
/* transform: translateY(-1000%); */
opacity: 0;
}
}
@media screen and (min-width: 300px) and (max-width: 800px) {
body {
background: #091921;
}
section {
width: 100%;
height: 100%;
}
}