-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (55 loc) · 946 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
html, body {
width: 100%;
height: 100%;
overflow: hidden;
background-color: #191d22;
}
* {
margin: 0;
padding: 0;
}
main {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#cirno {
height: 18rem;
cursor: pointer;
transition: all 0.5s ease;
}
#cirno:hover {
height: 19rem;
}
#counter {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: lighter;
color: rgb(210, 225, 255);
}
@keyframes cirno-move {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-200px);
}
100% {
transform: translateY(300px);
}
}
.mini-cirno {
width: 5rem;
filter: brightness(0.9);
}
.funky {
animation: cirno-move 2s ease-in-out;
}
#cirno-container {
position: absolute;
top: 90%;
width: 100%;
height: 10%;
}