forked from usablica/intro.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
introjs.css
88 lines (87 loc) · 2.64 KB
/
introjs.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
.introjs-overlay {
position: absolute;
z-index: 999999;
background-color:rgb(0, 0, 0);
opacity: 0;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.introjs-showElement {
z-index: 9999999;
position: relative;
}
.introjs-helperLayer {
background-color: rgba(255, 255, 255, 0.9);
z-index: 9999998;
position: absolute;
border-radius: 4px;
border: 1px solid rgba(0, 0, 0, 0.5);
box-shadow: 0px 2px 15px rgba(0,0,0,0.4);
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.introjs-helperNumberLayer {
z-index: 9999999999 !important;
padding: 2px;
background: #ff3019; /* Old browsers */
background: -moz-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff3019), color-stop(100%,#cf0404)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ff3019 0%,#cf0404 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ff3019 0%,#cf0404 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #ff3019 0%,#cf0404 100%); /* IE10+ */
background: linear-gradient(to bottom, #ff3019 0%,#cf0404 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3019', endColorstr='#cf0404',GradientType=0 ); /* IE6-9 */ color: white;
position: absolute;
border-radius: 50%;
font-family: Arial, verdana, tahoma;
font-size: 13px;
font-weight: bold;
text-align: center;
width: 20px;
border: 3px solid white;
box-shadow: 0px 2px 5px rgba(0,0,0,0.4);
text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
left: -16px;
top: -16px;
}
.introjs-tooltip:before {
border: 5px solid white;
content:'';
border-top-color:transparent;
border-right-color:transparent;
border-bottom-color:white;
border-left-color:transparent;
position: absolute;
top: -10px;
}
.introjs-tooltip {
position: absolute;
padding: 10px;
background-color: white;
border-radius: 3px;
box-shadow: 0px 1px 10px rgba(0,0,0,0.4);
-webkit-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
-o-transition: all 0.1s ease-out;
-ms-transition: all 0.1s ease-out;
transition: all 0.1s ease-out;
}
.introjs-tooltipbuttons {
font-size: 10px;
text-align: right;
}
.introjs-tooltipbuttons .introjs-skipbutton {
margin-right: 5px;
color: gray;
}
.introjs-tooltipbuttons .introjs-nextbutton {
font-weight: bold;
color: #2071d3;
font-size: 11px;
}