-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
125 lines (118 loc) · 1.98 KB
/
Copy pathindex.css
File metadata and controls
125 lines (118 loc) · 1.98 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@charset "utf-8";
@media (max-width:375px){
}
*{
box-sizing:border-box;
margin: 0;
padding: 0;
}
body{
align-items: center;
background: #050801;
display:flex;
flex-wrap:wrap;
justify-content: center;
min-height: 100vh;
}
a{
text-transform: uppercase;
color: #03e9f4;
display:inline-block;
font-size: 26px;
letter-spacing: 4px;
margin: 20px 40px;
position: relative;
overflow: hidden;
text-decoration: none;
transition: 0.5s;
-webkit-box-reflect:below 1px linear-gradient(transparent,#0005);
}
a:nth-child(1) {
filter: hue-rotate(270deg);
}
a:nth-child(3) {
filter: hue-rotate(110deg);
}
a:nth-child(4) {
filter: hue-rotate(70deg);
}
a:hover{
background: #03e9f4;
box-shadow: 0 0 5px #03e9f4, 0 0 25px #03e9f4, 0 0 50px #03e9f4, 0 0 200px #03e9f4;
color: #050801;
}
a span{
display: block;
position: absolute;
}
span:nth-child(1){
animation: animate1 1s linear infinite;
background: linear-gradient(90deg,transparent,#03e9f4);
height: 2px;
left: -100px;
top: 0;
width: 100%;
}
@keyframes animate1{
0%{
left: -100%;
}
50%,
100%{
left: 100%
}
}
span:nth-child(2){
animation: animate2 1s infinite;
animation-delay: 0.25s;
background: linear-gradient(180deg, transparent, #03e9f4);
height: 100%;
top: -100%;
right: 0;
width: 2px;
}
@keyframes animate2{
0%{
top: -100%;
}
50%,
100%{
top: 100%;
}
}
span:nth-child(3){
animation: animate3 1s infinite;
animation-delay: .5s;
background: linear-gradient(270deg, transparent, #03e9f4);
height: 2px;
right: -100%;
width: 100%;
bottom: 0;
}
@keyframes animate3{
0%{
right:-100%;
}
50%,
100%{
right:100%;
}
}
span:nth-child(4){
animation: animate4 1s infinite;
animation-delay: .75s;
background: linear-gradient(270deg, transparent, #03e9f4);
height:100%;
left: 0;
width: 2px;
bottom: 100%;
}
@keyframes animate4{
0%{
bottom:-100%;
}
50%,
100%{
bottom:100%;
}
}