-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathtour.css
66 lines (59 loc) · 1.4 KB
/
tour.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
/* Additional CSS */
.shepherd-theme-custom button {
text-align: center;
background-color: grey;
color: #ffffff;
border: 2px solid black;
text-shadow: none;
font-size: 14px;
padding: 5px 8px;
border-radius: 6px;
}
.shepherd-theme-custom button:hover {
transform: scale(1.1);
transition: 0.3s ease-in-out;
color:grey;
}
.shepherd-cancel-icon {
background-color:transparent !important;
color:black !important;
border:none !important;
font-size:25px !important;
}
.shepherd-cancel-icon:hover{
transform: scale(1.5) !important;
transition: 0.3s ease-in-out !important;
color:black !important;
background:transparent !important;
}
.shepherd-enabled.shepherd-element {
margin-left:15px !important;
}
.shepherd-enabled.shepherd-element[data-shepherd-step-id="move-map"]{
margin-left:0px !important;
margin-right:20px !important;
}
.shepherd-enabled.shepherd-element[data-shepherd-step-id="overview"]{
margin-left:0px !important;
margin-bottom:20px !important;
margin-right:20px !important;
}
.shepherd-progress-bar {
position: absolute;
left: 2%;
bottom: 9%;
font-size: 14px;
border-radius: 9px;
height: 20px;
width: 100%;
max-width: 180px;
padding: 3px;
background: #e6e6e6
}
.shepherd-progress-bar span {
display: block;
background: grey;
width: 50%;
height: 100%;
border-radius: 9px;
}