-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (49 loc) · 1012 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Poppins', sans-serif;
background: #18191f;
}
.container{
display: flex;
justify-content: center;
align-items: center;
margin: 10rem;
}
#twitter,
#github,
#facebook,
#youtube{
font-size: 8rem;
background-color: #18191f;
color: #fff;
box-shadow: 2px 2px 2px #00000080, 10px 1px 12px #00000080,
inset 2px 2px 2px 10px #00000080,
inset 2px 2px 10px #00000080,
inset 2px 2px 10px #00000080;
border-radius: 1.8rem;
padding: 1rem 1.3rem;
margin:1rem;
animation: animate 3s linear infinite;
text-shadow: 0 0 50px #0072ff, 0 0 100px #0072ff, 0 0 150px #0072ff, 0 0 200px #0072ff;
}
#github{
animation-delay: 0.3s;
}
#facebook{
animation-delay: 0.7s;
}
#youtube{
animation-delay: 1s;
}
@keyframes animate {
from{
filter: hue-rotate(0deg);
}
to{
filter: hue-rotate(360deg);
}
}