-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (59 loc) · 988 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
71
72
* {
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
overflow: hidden;
}
.btn {
color: white;
background-color: hsl(200, 100%, 50%);
border: none;
outline: none;
padding: 0.5em 1em;
border-radius: 0.3em;
cursor: pointer;
}
.btn:hover {
animation: blink 500ms ease-in-out infinite, grow 1s ease-in-out infinite;
}
.btn:focus {
animation: fly-away 1s ease-in-out forwards;
}
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0.75;
}
100% {
opacity: 1;
}
}
@keyframes grow {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
@keyframes fly-away {
33% {
transform: translate(100px, 50px) rotate(30deg) scale(0.9);
}
66% {
transform: translate(0, 25px) rotate(90deg) scale(0.75);
}
100% {
transform: translate(-100px, -75px) rotate(200deg) scale(0.25);
}
}