-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (64 loc) · 1.35 KB
/
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
*{
margin: 0;
padding: 0;
}
body{
height: 100%;
width: 100%;
background: #18191f;
}
.container{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vm;
}
.name{
position: absolute;
top: 0;
right:0;
left: 0;
padding: 50px;
margin-top: 100px;
text-align: center;
font-size: 400%;
color: #ffffff;
font-style: italic;
animation: animate 3s linear infinite;
text-shadow: 0 0 50px #0072ff, 0 0 100px #0072ff, 0 0 150px #0072ff, 0 0 200px #0072ff;
}
#linkedin,
#twitter,
#github,
#facebook{
font-size: 8em;
background-color: #18191f;
color: #ffff;
box-shadow: 2px 2px #00000080 ,10px 1px 12px #00000080, 2px 2px 10px #00000080, 2px 2px 3px #00000080, inset 2px 2px 10px #00000080, inset 2px 2px 10px #00000080,inset 2px 2px 10px #00000080, inset 2px 2px 10px #00000080;
border-radius: 29px;
padding: 11px;
margin: 40px;
animation: animate 3s linear infinite;
text-shadow: 0 0 50px #0072ff, 0 0 100px #0072ff, 0 0 150px #0072ff, 0 0 200px #0072ff;
}
#twitter{
animation-delay: 0.3s;
}
#facebook{
animation-delay: 0.3s;
}
#github{
animation-delay: 0.1s;
}
#linkedin{
animation-delay: 0.3s;
}
@keyframes animate{
from{
filter: hue-rotate(0deg);
}
to{
filter: hue-rotate(360deg);
}
}