-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbutton.css
117 lines (117 loc) · 1.95 KB
/
button.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
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
body {
background: rgba(0, 0, 0, 0.5);
text-align: center;
font-family: sans-serif;
}
body {
margin: 0;
padding: 0;
font-family: sans-serif;
background: linear-gradient(#141e30, #243b55);
}
html {
height: 100%;
}
a {
position: relative;
display: inline-block;
padding: 10px 20px;
color: #03e9f4;
font-size: 16px;
text-decoration: none;
text-transform: uppercase;
overflow: hidden;
transition: 0.5s;
margin-top: 40px;
letter-spacing: 4px;
}
a:hover {
background: #48aef3;
color: #fff;
border-radius: 5px;
box-shadow: 0 0 5px #48aef3, 0 0 25px #48aef3, 0 0 50px #48aef3,
0 0 100px #48aef3;
}
span {
position: absolute;
display: block;
}
span:nth-child(1) {
top: 0;
left: -100%;
width: 100%;
height: 2px;
background: linear-gradient(90deg, transparent, #48aef3);
animation: btn-anim1 1s linear infinite;
}
span:nth-child(2) {
top: -100%;
right: 0;
width: 2px;
height: 100%;
background: linear-gradient(180deg, transparent, #48aef3);
animation: btn-anim2 1s linear infinite;
animation-delay: 0.25s;
}
span:nth-child(3) {
bottom: 0;
right: -100%;
width: 100%;
height: 2px;
background: linear-gradient(270deg, transparent, #48aef3);
animation: btn-anim3 1s linear infinite;
animation-delay: 0.5s;
}
span:nth-child(4) {
bottom: -100%;
left: 0;
width: 2px;
height: 100%;
background: linear-gradient(360deg, transparent, #03e9f4);
animation: btn-anim4 1s linear infinite;
animation-delay: 0.75s;
}
@keyframes btn-anim1 {
0% {
left: -100%;
left: -100%;
}
50%,
100% {
left: 100%;
left: 100%;
}
}
@keyframes btn-anim2 {
0% {
top: -100%;
top: -100%;
}
50%,
100% {
top: 100%;
top: 100%;
}
}
@keyframes btn-anim3 {
0% {
right: -100%;
right: -100%;
}
50%,
100% {
right: 100%;
right: 100%;
}
}
@keyframes btn-anim4 {
0% {
bottom: -100%;
bottom: -100%;
}
50%,
100% {
bottom: 100%;
bottom: 100%;
}
}