-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcustom.css
More file actions
60 lines (54 loc) · 1.44 KB
/
custom.css
File metadata and controls
60 lines (54 loc) · 1.44 KB
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
/* Workaround for EXTWPTOOLK-486 */
@media (max-width: 767px) {
.popup-box {
left: 10px !important;
right: 10px !important;
margin-left: auto !important;
margin-right: auto !important;
}
.popup-box .arrow { display: none; }
}
.animation-lightspeed {
animation: lightspeed 3s ease-out;
}
@keyframes lightspeed {
from { transform: translate3d(100%, 0, 0) skewX(-30deg); opacity: 0; }
60% { transform: skewX(20deg); opacity: 1; }
80% { transform: skewX(-5deg); opacity: 1; }
to { transform: none; opacity: 1;}
}
.animation-bounce {
animation: bounce 1s;
}
@keyframes bounce {
from, 20%, 40%, 60%, 80%, to { animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); }
0% { opacity: 0; transform: scale3d(.3, .3, .3); }
20% { transform: scale3d(1.1, 1.1, 1.1); }
40% { transform: scale3d(.9, .9, .9); }
60% { opacity: 1; transform: scale3d(1.03, 1.03, 1.03); }
80% { transform: scale3d(.97, .97, .97); }
to { opacity: 1; transform: scale3d(1, 1, 1); }
}
.popup-license-image {
margin: -10px -20px 20px;
}
.popup-license-image img {
max-width: 100%;
max-height: 100%;
}
.demo-title {
background-color: #E95769;
float: left;
margin-right: 5px;
}
.demo-title span {
font-size: 12px;
color: #ffffff;
vertical-align: middle;
font-weight: bold;
text-align: center;
padding: 5px;
}
.paid-feature-icon {
margin-bottom: 2px;
}