-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgh_btn.css
53 lines (44 loc) · 865 Bytes
/
gh_btn.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
@keyframes corruption-btn {
0% {
background-color: #402544;
border: 7px solid #402544;
}
50% {
background-color: #5C1966;
border: 7px solid #5C1966;
}
100% {
background-color: #402544;
border: 7px solid #402544;
}
}
@keyframes corruption-btn-rev {
0% {
background-color: #5C1966;
border: 7px solid #5C1966;
}
50% {
background-color: #402544;
border: 7px solid #402544;
}
100% {
background-color: #5C1966;
border: 7px solid #5C1966;
}
}
.stf-github-btn {
background-color: #5C1966;
border: 7px solid #5C1966;
border-radius: 5px;
padding: 0px 0px;
width:225px;
height:78px;
margin-left: 5px !important;
padding-right: 5px;
}
.stf-github-btn:hover {
background-color: #5C1966;
border: 7px solid #5C1966;
transition: 0.3s;
animation: corruption-btn-rev 1s infinite;
}