-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuzz.css
82 lines (80 loc) · 2.18 KB
/
buzz.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
73
74
75
76
77
78
79
80
81
82
html,body {
padding:0;
height:100%;
margin:0;
}
body {
text-align: center;
background: hotpink;
transition: background 250ms;
font-family: sans-serif;
font-size: 20px;
}
button {
color: white;
letter-spacing: 2px;
font-size: 28px;
line-height: 1.6em;
background: #444;
padding:28px 28px 8px;
border-radius:10px;
border: solid 6px black;
transition: background-color 400ms, border-color 50ms;
z-index: 100;
}
button:hover {
background-color: red;
}
button:focus {
outline: none;
}
p {
opacity: 0;
transition:opacity 50ms;
}
img {
position: absolute;
bottom:10px;
left: calc(50% - 110px);
width:220px;
z-index: -10;
}
body.buzz{
background-color: red;
}
body.buzz img {
-webkit-animation: shake 500ms;
animation: shake 500ms;
}
body.buzz button {
border-color: white;
}
body.buzz p {
opacity: 1;
}
@-webkit-keyframes shake {
0% { -webkit-transform: translate(2px, 0px) rotate(0deg); }
10% { -webkit-transform: translate(-1px, -2px) rotate(-1deg); }
20% { -webkit-transform: translate(-3px, 0px) rotate(1deg); }
30% { -webkit-transform: translate(0px, 2px) rotate(0deg); }
40% { -webkit-transform: translate(1px, -1px) rotate(1deg); }
50% { -webkit-transform: translate(-1px, 2px) rotate(-1deg); }
60% { -webkit-transform: translate(-3px, 1px) rotate(0deg); }
70% { -webkit-transform: translate(2px, 1px) rotate(-1deg); }
80% { -webkit-transform: translate(-1px, -1px) rotate(1deg); }
90% { -webkit-transform: translate(2px, 2px) rotate(0deg); }
100% { -webkit-transform: translate(1px, -2px) rotate(-1deg); }
}
@keyframes shake {
0% { transform: translate(2px, 1px) rotate(0deg); }
10% { transform: translate(-1px, -2px) rotate(-1deg); }
20% { transform: translate(-3px, 0px) rotate(1deg); }
30% { transform: translate(0px, 2px) rotate(0deg); }
40% { transform: translate(1px, -1px) rotate(1deg); }
50% { transform: translate(-1px, 2px) rotate(-1deg); }
60% { transform: translate(-3px, 1px) rotate(0deg); }
70% { transform: translate(2px, 1px) rotate(-1deg); }
80% { transform: translate(-1px, -1px) rotate(1deg); }
90% { transform: translate(2px, 2px) rotate(0deg); }
100% { transform: translate(1px, -2px) rotate(-1deg); }
}