-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlightning.css
executable file
·107 lines (106 loc) · 2.1 KB
/
lightning.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
/* Lightening */
.lightning {
color: black !important;
position: relative;
background: #ffffff;
text-align: center !important;
vertical-align: middle !important;
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
}
.lightning:after {
content: '';
height: 3px;
width: 100%;
background: linear-gradient(-225deg, #ffb600 0%, #ff0000 100%);
/* background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB); */
background-size: 400% 400%;
-webkit-animation: Gradient 6s ease infinite;
-moz-animation: Gradient 6s ease infinite;
animation: Gradient 6s ease infinite;
position: absolute;
left: 0;
top: 0%;
}
.lightning td {
color: white !important;
}
.lightning td a {
color: white !important;
}
/* Thunder */
.thunder {
box-shadow: inset 0 3px #ff3b00;
background: #ffc6c6 !important;
}
/* applies when we check for reorders */
.reOrder {
box-shadow: inset 0 3px #33999e;
background: #c6ffff !important;
}
/* Boom */
.boom {
color: black !important;
position: relative;
background: #ffffff;
text-align: center !important;
vertical-align: middle !important;
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
}
.boom:after {
content: '';
height: 3px;
width: 100%;
background: linear-gradient(
-225deg,
rgb(76, 255, 0) 0%,
rgb(63, 193, 32) 100%
)
0% 0% / 400% 400%;
background-size: 400% 400%;
-webkit-animation: Gradient 6s ease infinite;
-moz-animation: Gradient 6s ease infinite;
animation: Gradient 6s ease infinite;
position: absolute;
left: 0;
top: 0%;
}
.boom td {
color: white !important;
}
.boom td a {
color: white !important;
}
/* Animation */
@-webkit-keyframes Gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
@-moz-keyframes Gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
@keyframes Gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}