-
Notifications
You must be signed in to change notification settings - Fork 0
/
sk.css
36 lines (33 loc) · 790 Bytes
/
sk.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
.d_button{
align-items: center;
justify-content: center;
color: yellow;
padding: 10px;
font-size: 20px;
background-color: transparent;
margin-top: 20%;
animation: glowing-border 2s infinite;
}
.hc{
display: flex;
justify-content: center;
}
h1{
margin-top: 20%;
padding: 10px;
color: yellow;
}
@keyframes glowing-border {
0% {
border-color: rgba(255, 255, 255, 0.2);
box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}
50% {
border-color: rgba(255, 255, 255, 0.7);
box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}
100% {
border-color: rgba(255, 255, 255, 0.2);
box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}
}