-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbugscraper_css.css
123 lines (120 loc) · 2.72 KB
/
bugscraper_css.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
118
119
120
121
122
123
.custom-small{
font-size:12px;
color: #8f8d95;
}
a {
position: relative;
top: 0;
text-shadow:
0px 0px 0px #f77622,
0px 0px 0px #f77622;
transition:
top ease 0.2s,
text-shadow ease 0.2s,
text-shadow ease 0.2s;
}
a:hover {
position: relative;
top: -3px;
text-shadow:
0px 1px 0px #f77622,
0px 2px 0px #f77622;
}
.custom-textwave{
margin-top: 0.6em;
font-size: 45px;
text-align: center;
}
.custom-textwave span {
display: inline-block;
-webkit-animation: wave-text 1s ease-in-out infinite;
animation: wave-text 1s ease-in-out infinite;
}
.custom-textwave span:nth-of-type(1) {
-webkit-animation-delay: 0s;
animation-delay: 0s;
}
.custom-textwave span:nth-of-type(2) {
-webkit-animation-delay: 0.1s;
animation-delay: 0.1s;
}
.custom-textwave span:nth-of-type(3) {
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
.custom-textwave span:nth-of-type(4) {
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
.custom-textwave span:nth-of-type(5) {
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
}
.custom-textwave span:nth-of-type(6) {
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
.custom-textwave span:nth-of-type(7) {
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
}
.custom-textwave span:nth-of-type(8) {
-webkit-animation-delay: 0.7s;
animation-delay: 0.7s;
}
.custom-textwave span:nth-of-type(9) {
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
.custom-textwave span:nth-of-type(10) {
-webkit-animation-delay: 0.9s;
animation-delay: 0.9s;
}
@-webkit-keyframes wave-text {
00% {
transform: translateY(0em);
}
60% {
transform: translateY(-0.3em);
}
100% {
transform: translateY(0em);
}
}
@keyframes wave-text {
00% {
transform: translateY(0em);
}
60% {
transform: translateY(-0.3em);
}
100% {
transform: translateY(0em);
}
}
.custom-shadowred{
text-shadow: 0px 2px 0px #e43b44;
}
.custom-shadowblue{
text-shadow: 0px 2px 0px #0095e9;
}
.custom-shadowyellow{
text-shadow: 0px 2px 0px #feae34;
}
.custom-bigshadowred{
text-shadow: 0px 4px 0px #e43b44;
}
.custom-bigshadowblue{
text-shadow: 0px 4px 0px #0095e9;
}
.custom-bigshadowyellow{
text-shadow: 0px 4px 0px #feae34;
}
.custom-outline{
color: white;
text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
h3{
text-shadow:
0px 2px 0px #e43b44;
}