-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (59 loc) · 1005 Bytes
/
style.css
File metadata and controls
65 lines (59 loc) · 1005 Bytes
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
.pulse{
height: 50px;
width: 50px;
position: absolute;
margin: auto;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
background: linear-gradient(#8A82FB, #407ED7);
border-radius: 50%;
display: grid;
place-items: center;
font-size: 20px;
color: whitesmoke;
}
.pulse::after,
.pluse::before{
content: "";
position: absolute;
height: 100%;
width: 100%;
background: #8A82FB;
border-radius: 50%;
z-index: -1;
opacity: 0.7;
}
.pulse::before{
animation: pulse 2s ease-out infinite;
}
.pulse::after{
animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
100%{
transform: scale(2);
opacity: 0;
}
}
.bell{
animation: shake 0.1s ease-out 5;
}
@keyframes shake {
0%{
transform: translateX(0px);
}
25%{
transform: translateX(-4px);
}
50%{
transform: translateX(0px);
}
75%{
transform: translateX(4px);
}
100%{
transform: translateX(0px);
}
}