-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
91 lines (79 loc) · 1.54 KB
/
style.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
/* Price Tooltip CSS */
.pricesTooltip {
background-color: #ffffff;
border-radius: 4px;
padding: 20px;
font-size: 14px;
opacity: 0;
transition: opacity 0.5s ease;
width: auto;
border: 2px solid;
position: fixed;
z-index: 9999999;
right: 5px;
bottom: 5px;
}
.pricesTooltip > span {
display:block;
}
.pricesTooltip > a {
display:block;
color: #337ab7;
text-decoration: none;
font-size: 14px;
}
.pricesTooltip > h5 {
display:block;
color: black;
font-size: 15px;
font-weight: 600;
margin-bottom: 5px;
}
/* Toast CSS */
#toast {
visibility: hidden;
min-width: 250px;
margin-left: -125px;
background-color: #333;
color: #fff;
text-align: center;
border-radius: 2px;
padding: 16px;
position: fixed;
z-index: 99999;
left: 50%;
bottom: 30px;
font-size: 17px;
cursor: pointer;
}
#toast.show {
visibility: visible;
-webkit-animation: fadein 0.5s, fadeout 0.5s 7.5s;
animation: fadein 0.5s, fadeout 0.5s 7.5s;
}
@-webkit-keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
@keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
.blackWhite {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
.pinImg {
width: 26px;
position: absolute;
top: 2px;
right: 2px;
}