1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 17:59:55 +02:00

Add intro.js

This commit is contained in:
Daniel Neto 2024-05-13 10:48:47 -03:00
parent 1cfc673e42
commit abb433718e
71 changed files with 2775 additions and 2 deletions

243
node_modules/intro.js/themes/introjs-dark.css generated vendored Normal file
View file

@ -0,0 +1,243 @@
/*
Dark theme for IntroJs
By: Khashayar Pourdeilami (http://kpourdeilami.github.io)
for: IntroJs (https://github.com/usablica/intro.js)
*/
.introjs-overlay {
position: absolute;
z-index: 999999;
background:#fff;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.introjs-fixParent {
z-index: auto !important;
opacity: 1.0 !important;
}
.introjs-showElement,
tr.introjs-showElement > td,
tr.introjs-showElement > th {
z-index: 9999999 !important;
}
.introjs-relativePosition,
tr.introjs-showElement > td,
tr.introjs-showElement > th {
position: relative;
}
.introjs-helperLayer {
position: absolute;
z-index: 9999998;
background:#656D78;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.introjs-helperNumberLayer {
position: absolute;
z-index: 9999999999 !important;
padding: 10px;
font-family: Arial, verdana, tahoma;
font-size: 13px;
top:-40px;
font-weight: bold;
color: white;
text-align: center;
background:#434A54;
width: 20px;
height:20px;
line-height: 20px;
}
.introjs-arrow {
border: 5px solid #434A54;
content:'';
position: absolute;
}
.introjs-arrow.top {
top: -10px;
border-top-color:transparent;
border-right-color:transparent;
border-bottom-color:#434A54;
border-left-color:transparent;
}
.introjs-arrow.top-right {
top: -10px;
right: 10px;
border-top-color:transparent;
border-right-color:transparent;
border-bottom-color:#434A54;
border-left-color:transparent;
}
.introjs-arrow.top-middle {
top: -10px;
left: 50%;
margin-left: -5px;
border-top-color:transparent;
border-right-color:transparent;
border-bottom-color:#434A54;
border-left-color:transparent;
}
.introjs-arrow.right {
right: -10px;
top: 10px;
border-top-color:transparent;
border-right-color:transparent;
border-bottom-color:transparent;
border-left-color:#434A54;
}
.introjs-arrow.bottom {
bottom: -10px;
border-top-color:#434A54;
border-right-color:transparent;
border-bottom-color:transparent;
border-left-color:transparent;
}
.introjs-arrow.left {
left: -10px;
top: 10px;
border-top-color:transparent;
border-right-color:#434A54;
border-bottom-color:transparent;
border-left-color:transparent;
}
.introjs-tooltip {
position: absolute;
padding: 10px;
background-color: #434A54;
min-width: 200px;
padding-top:30px;
max-width: 300px;
color:#fff;
-webkit-transition: opacity 0.1s ease-out;
-moz-transition: opacity 0.1s ease-out;
-ms-transition: opacity 0.1s ease-out;
-o-transition: opacity 0.1s ease-out;
transition: opacity 0.1s ease-out;
}
.introjs-tooltipbuttons {
text-align: right;
position:relative;
bottom:-44px;
margin-left:-10px;
margin-right:-10px;
padding:5px;
background:#656D78;
}
/*
Buttons style by http://nicolasgallagher.com/lab/css3-github-buttons/
Changed by Afshin Mehrabani
Further modified by: Khashayar P.
*/
.introjs-button {
position: relative;
overflow: visible;
display: inline-block;
padding: 0.3em 0.8em;
border: 2px solid #fff;
margin: 0;
text-decoration: none;
font: 11px/normal sans-serif;
color: #fff !important;
white-space: nowrap;
cursor: pointer;
outline: none;
-webkit-background-clip: padding;
-moz-background-clip: padding;
-o-background-clip: padding-box;
/*background-clip: padding-box;*/ /* commented out due to Opera 11.10 bug */
/* IE hacks */
zoom: 1;
*display: inline;
margin-top: 10px;
}
.introjs-button:hover {
text-decoration: none;
color:#434A54 !important;
background:#fff;
}
.introjs-button:focus,
.introjs-button:active {
background:#fff !important;
color:#434A54 !important;
}
/* overrides extra padding on button elements in Firefox */
.introjs-button::-moz-focus-inner {
padding: 0;
border: 0;
}
.introjs-skipbutton {
margin-right: 5px;
color: #fff;
}
.introjs-prevbutton {
border-right: none;
}
.introjs-disabled, .introjs-disabled:hover, .introjs-disabled:focus {
color: #fff;
box-shadow: none;
cursor: default;
background:transparent;
border-color:transparent;
}
.introjs-bullets {
text-align: center;
display:none;
}
.introjs-bullets ul {
clear: both;
margin: 15px auto 0;
padding: 0;
display: inline-block;
}
.introjs-bullets ul li {
list-style: none;
float: left;
margin: 0 2px;
}
.introjs-bullets ul li a {
display: block;
width: 8px;
height: 8px;
background: rgba(255,255,255,0.1);
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
text-decoration: none;
}
.introjs-bullets ul li a:hover {
background: rgba(255,255,255,0.2);
}
.introjs-bullets ul li a.active {
background: rgba(255,255,255,0.2);
}
.introjsFloatingElement {
position: absolute;
height: 0;
width: 0;
left: 50%;
top: 50%;
}

59
node_modules/intro.js/themes/introjs-flattener.css generated vendored Normal file
View file

@ -0,0 +1,59 @@
.introjs-helperNumberLayer {
font-family: tahoma, Arial, verdana, sans-serif;
font-size: 14px;
text-shadow: none;
width: 22px;
height: 22px;
line-height: 22px;
border: 2px solid #ecf0f1;
border-radius: 50%;
background: #e74c3c;
}
.introjs-helperLayer {
background-color: #FFF;
background-color: rgba(255,255,255,.9);
border: none;
border-radius: 2px;
}
.introjs-tooltip {
letter-spacing: .1em;
color: #2c3e50;
font-family: tahoma, Arial, verdana, sans-serif;
border-radius: 2px;
}
.introjs-button {
padding: 0.6em 0.8em;
text-shadow: none;
font-weight: bold;
color: #2c3e50;
font-family: tahoma, Arial, verdana, sans-serif;
background: #ecf0f1;
background-image: none;
-webkit-border-radius: .2em;
-moz-border-radius: .2em;
border-radius: .2em;
-webkit-transition: background .3s, border .3s;
-moz-transition: background .3s, border .3s;
-ms-transition: background .3s, border .3s;
-o-transition: background .3s, border .3s;
transition: background .3s, border .3s;
}
.introjs-prevbutton {
border-radius: .2em 0 0 .2em;
}
.introjs-nextbutton {
border-radius: 0 .2em .2em 0;
}
.introjs-button:hover, .introjs-button:focus {
background: #2c3e50;
color: #fff;
box-shadow: none;
border-color: #2c3e50;
text-decoration: none;
}

55
node_modules/intro.js/themes/introjs-modern.css generated vendored Normal file
View file

@ -0,0 +1,55 @@
.introjs-tooltip {
background-color: rgba(000, 0, 0, 0.5);
color: #fff;
}
.introjs-button,
.introjs-button:hover, .introjs-button:focus, .introjs-button:active,
.introjs-disabled, .introjs-disabled:focus, .introjs-disabled:hover {
outline: none;
background-image: none;
background-color: transparent;
color: #fff;
border: 1px solid transparent;
border-radius: 50px;
box-shadow: none;
border-shadow: none;
text-shadow: none;
}
.introjs-button:hover, .introjs-button:focus, .introjs-button:active {
border: 1px solid #fff
}
.introjs-disabled, .introjs-disabled:focus, .introjs-disabled:hover {
color: #ccc;
border: 1px solid transparent;
}
.introjs-arrow {
border: 10px solid #fff;
}
.introjs-arrow.top, .introjs-arrow.top-middle, .introjs-arrow.top-right {
border-color: transparent transparent rgba(000, 0, 0, 0.5);
top: -20px;
left: 20px;
}
.introjs-arrow.bottom, .introjs-arrow.bottom-middle, .introjs-arrow.bottom-right {
border-color: rgba(000, 0, 0, 0.5) transparent transparent;
bottom: -20px;
left: 20px;
}
.introjs-arrow.left, .introjs-arrow.right {
top: 20px;
}
.introjs-arrow.left-bottom, .introjs-arrow.right-bottom {
bottom: 20px;
}
.introjs-arrow.left, .introjs-arrow.left-bottom {
left: -20px;
border-color: transparent rgba(000, 0, 0, 0.5) transparent transparent;
}
.introjs-arrow.right, .introjs-arrow.right-bottom {
right: -20px;
border-color: transparent transparent transparent rgba(000, 0, 0, 0.5);
}

297
node_modules/intro.js/themes/introjs-nassim.css generated vendored Normal file
View file

@ -0,0 +1,297 @@
.introjs-overlay {
position: absolute;
z-index: 999999;
background: #181818;
opacity: 0;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.introjs-fixParent {
z-index: auto !important;
opacity: 1.0 !important;
}
.introjs-showElement {
z-index: 9999999 !important;
}
.introjs-relativePosition {
position: relative;
}
.introjs-helperLayer {
position: absolute;
z-index: 9999998;
background-color: #FFF;
background-color: rgba(255,255,255,.9);
border: 1px solid #777;
border: 2px solid rgba(117, 117, 117, 1);
border-radius: 4px;
box-shadow: 0 5px 8px -3px rgba(0,0,0,.6);
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.introjs-helperNumberLayer {
position: absolute;
top: -16px;
left: -9px;
z-index: 9999999999 !important;
padding: 2px;
font-family: Arial, verdana, tahoma;
font-size: 13px;
font-weight: bold;
color: #fff; /* Old browsers */ /* Chrome10+,Safari5.1+ */
background: #DA4433;
width: 20px;
box-shadow: 0 1px 1px rgba(0,0,0,.35);
height:20px;
text-align: center;
line-height: 20px;
border: 2px solid #DA4433;
border-radius: 0; /* IE6-9 */ /* IE10 text shadows */
}
.introjs-helperNumberLayer:after {
content:"";
width:0;
height:0;
position:absolute;
content:0;
left:-3px;
bottom:-10px;
border:4px solid transparent;
border-right-color:#900;
border-top-color:#900;
}
.introjs-arrow {
border: 5px solid white;
content:'';
position: absolute;
}
.introjs-arrow.top {
top: -10px;
border-top-color:transparent;
border-right-color:transparent;
border-bottom-color: #ecf0f1;
border-left-color:transparent;
}
.introjs-arrow.right {
right: -10px;
top: 10px;
border-top-color:transparent;
border-right-color:transparent;
border-bottom-color:transparent;
border-left-color:#ecf0f1;
}
.introjs-arrow.bottom {
bottom: -10px;
border-top-color:#ecf0f1;
border-right-color:transparent;
border-bottom-color:transparent;
border-left-color:transparent;
}
.introjs-arrow.left {
left: -10px;
top: 10px;
border-top-color:transparent;
border-right-color: #ecf0f1;
border-bottom-color:transparent;
border-left-color:transparent;
}
.introjs-tooltip {
position: absolute;
padding: 10px 10px;
background-color: #ecf0f1;
min-width: 200px;
max-width: 300px;
border-radius: 3px;
/* border-radius: 3px; */
/* box-shadow: 0 6px 7px -4px rgba(0,0,0,.4); */
-webkit-transition: opacity 0.1s ease-out;
-moz-transition: opacity 0.1s ease-out;
-ms-transition: opacity 0.1s ease-out;
-o-transition: opacity 0.1s ease-out;
transition: opacity 0.1s ease-out;
/* border: 5px double #0787AF; */
}
.introjs-tooltiptext {
margin-left: -10px;
margin-right: -10px;
/* border-top: 1px solid #FFFFFF; */
/* background: #FAFAFA; */
color: #2c3e50;
padding: 25px 30px 15px;
/* border-bottom: 1px solid #FFFFFF; */
}
.introjs-tooltipbuttons {
text-align: center;
/* background: rgba(0, 0, 0, 0.06); */
border-radius: 0 0 8px 8px;
padding-bottom: 10px;
}
/*
Buttons style by http://nicolasgallagher.com/lab/css3-github-buttons/
Changed by Afshin Mehrabani
*/
.introjs-button {
position: relative;
overflow: visible;
display: inline-block;
padding: 0.5em 0.8em;
/* box-shadow: 0 2px 0px -0px #306588; */
margin: 0;
outline: none;
border: 2px solid;
background: transparent;
text-decoration: none;
font: 11px/normal sans-serif;
color: #2980b9 !important;
white-space: nowrap;
cursor: pointer;
outline: none !important;
-webkit-background-clip: padding;
-moz-background-clip: padding;
-o-background-clip: padding-box;
/*background-clip: padding-box;*/ /* commented out due to Opera 11.10 bug */
-webkit-border-radius: 0.2em;
-moz-border-radius: 0.2em;
border-radius: 0.2em;
/* IE hacks */
zoom: 1;
*display: inline;
margin-top: 10px;
transition:all 0.25s ease;
-webkit-transition:all 0.25s ease;
-moz-transition:all 0.25s ease;
-ms-transition:all 0.25s ease;
-o-transition:all 0.25s ease;
}
.introjs-button:hover {
color: #fff;
background: #2671A2;
text-decoration: none;
border-color: #235677;
}
.introjs-button:focus,
.introjs-button:active {
background: #23587A; text-decoration: none;
color: #fff;
/* bottom: -1px; */
box-shadow: none;
border-color: #173B53;
}
/* overrides extra padding on button elements in Firefox */
.introjs-button::-moz-focus-inner {
padding: 0;
border: 0;
}
.introjs-skipbutton {
margin-right: 5px;
color: #c00;
background: transparent;
}
.introjs-skipbutton:hover {
background: #EB1540;
border-color: #B91D0D;
}
.introjs-skipbutton:active, .introjs-skipbutton:focus {
background: #C02312;
/* box-shadow: 0 1px 0px -0px #6F1309; */
}
.introjs-prevbutton {
-webkit-border-radius: 0.2em 0 0 0.2em;
-moz-border-radius: 0.2em 0 0 0.2em;
border-radius: 0.2em 0 0 0.2em;
border-right: none;
}
.introjs-nextbutton {
-webkit-border-radius: 0 0.2em 0.2em 0;
-moz-border-radius: 0 0.2em 0.2em 0;
border-radius: 0 0.2em 0.2em 0;
}
.introjs-disabled, .introjs-disabled:hover, .introjs-disabled:focus {
color: #C2C2C2 !important;
border-color: #d4d4d4;
cursor: default;
/* box-shadow: 0 2px 0px -0px #CACED1; */
background-color: #E6E6E6;
background-image: none;
text-decoration: none;
}
.introjs-bullets {
text-align: center;
position: absolute;
left: 0;
right: 0;
top: -5px;
}
.introjs-bullets ul {
clear: both;
margin: 15px auto 0;
padding: 0;
display: inline-block;
}
.introjs-bullets ul li {
list-style: none;
float: left;
margin: 0 2px;
}
.introjs-bullets ul li a {
display: block;
width: 6px;
height: 6px;
background: #ccc;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
text-decoration: none;
}
.introjs-bullets ul li a:hover {
background: #999;
}
.introjs-bullets ul li a.active {
background: #999;
}
.introjs-progress {
background-color: #FAFAFA;
margin: 5px 20px;
}
.introjs-progressbar {
background-color: #2980b9;
}
.introjsFloatingElement {
position: absolute;
height: 0;
width: 0;
left: 50%;
top: 50%;
}

265
node_modules/intro.js/themes/introjs-nazanin.css generated vendored Normal file
View file

@ -0,0 +1,265 @@
.introjs-overlay {
position: absolute;
z-index: 999999;
background: #525252;
opacity: 0;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.introjs-fixParent {
z-index: auto !important;
opacity: 1.0 !important;
}
.introjs-showElement {
z-index: 9999999 !important;
}
.introjs-relativePosition {
position: relative;
}
.introjs-helperLayer {
position: absolute;
z-index: 9999998;
background-color: #FFF;
background-color: rgba(255,255,255,.9);
border: 1px solid #777;
border: 3px solid rgba(211, 214, 209, 1);
border-radius: 0;
box-shadow: 0 5px 8px -3px rgba(0,0,0,.6);
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.introjs-helperNumberLayer {
position: absolute;
top: -16px;
left: -16px;
z-index: 9999999999 !important;
padding: 2px;
font-family: Arial, verdana, tahoma;
font-size: 13px;
font-weight: bold;
color: white; /* Old browsers */ /* Chrome10+,Safari5.1+ */
background:#ff3019 ;
width: 20px;
height:20px;
text-align: center;
line-height: 20px;
border: 3px solid #DA4433;
border-radius: 10px 10px 0; /* IE6-9 */ /* IE10 text shadows */
}
.introjs-arrow {
border: 5px solid white;
content:'';
position: absolute;
}
.introjs-arrow.top {
top: -10px;
border-top-color:transparent;
border-right-color:transparent;
border-bottom-color: #ecf0f1;
border-left-color:transparent;
}
.introjs-arrow.right {
right: -10px;
top: 10px;
border-top-color:transparent;
border-right-color:transparent;
border-bottom-color:transparent;
border-left-color:#ecf0f1;
}
.introjs-arrow.bottom {
bottom: -10px;
border-top-color:#ecf0f1;
border-right-color:transparent;
border-bottom-color:transparent;
border-left-color:transparent;
}
.introjs-arrow.left {
left: -10px;
top: 10px;
border-top-color:transparent;
border-right-color: #ecf0f1;
border-bottom-color:transparent;
border-left-color:transparent;
}
.introjs-tooltip {
position: absolute;
padding: 10px;
background-color: #ecf0f1;
min-width: 200px;
max-width: 300px;
/* border-radius: 3px; */
box-shadow: 0 6px 7px -4px rgba(0,0,0,.4);
-webkit-transition: opacity 0.1s ease-out;
-moz-transition: opacity 0.1s ease-out;
-ms-transition: opacity 0.1s ease-out;
-o-transition: opacity 0.1s ease-out;
transition: opacity 0.1s ease-out;
}
.introjs-tooltiptext {
margin-left: -10px;
margin-right: -10px;
border-top: 1px solid #FFFFFF;
background: #FAFAFA;
color: #2c3e50;
padding: 5px 10px;
border-bottom: 1px solid #FFFFFF;
}
.introjs-tooltipbuttons {
text-align: center;
}
/*
Buttons style by http://nicolasgallagher.com/lab/css3-github-buttons/
Changed by Afshin Mehrabani
*/
.introjs-button {
position: relative;
overflow: visible;
display: inline-block;
padding: 0.5em 0.8em;
box-shadow: 0 2px 0px -0px #306588;
margin: 0;
outline: none;
background: #2980b9;
text-decoration: none;
font: 11px/normal sans-serif;
color: #fff !important;
white-space: nowrap;
cursor: pointer;
outline: none !important;
-webkit-background-clip: padding;
-moz-background-clip: padding;
-o-background-clip: padding-box;
/*background-clip: padding-box;*/ /* commented out due to Opera 11.10 bug */
-webkit-border-radius: 0.2em;
-moz-border-radius: 0.2em;
border-radius: 0.2em;
/* IE hacks */
zoom: 1;
*display: inline;
margin-top: 10px;
}
.introjs-button:hover {
color: #fff;
background: #2671A2;
text-decoration: none;
box-shadow: 0 2px 0px -0px #235677;
}
.introjs-button:focus,
.introjs-button:active {
background: #23587A; text-decoration: none;
/* bottom: -1px; */
box-shadow: 0 2px 0px 0px #173B53;
}
/* overrides extra padding on button elements in Firefox */
.introjs-button::-moz-focus-inner {
padding: 0;
border: 0;
}
.introjs-skipbutton {
margin-right: 5px;
color: #fff;
background: #e74c3c;
box-shadow: 0 2px 0px -0px #B91D0D;
}
.introjs-skipbutton:hover {
background: #EB1540; box-shadow: 0 2px 0px -0px #B91D0D;
}
.introjs-skipbutton:active, .introjs-skipbutton:focus {
background: #C02312;
box-shadow: 0 1px 0px -0px #6F1309;
}
.introjs-prevbutton {
-webkit-border-radius: 0.2em 0 0 0.2em;
-moz-border-radius: 0.2em 0 0 0.2em;
border-radius: 0.2em 0 0 0.2em;
border-right: none;
}
.introjs-nextbutton {
-webkit-border-radius: 0 0.2em 0.2em 0;
-moz-border-radius: 0 0.2em 0.2em 0;
border-radius: 0 0.2em 0.2em 0;
}
.introjs-disabled, .introjs-disabled:hover, .introjs-disabled:focus {
color: #C2C2C2 !important;
border-color: #d4d4d4;
cursor: default;
box-shadow: 0 2px 0px -0px #CACED1;
background-color: #E6E6E6;
background-image: none;
text-decoration: none;
}
.introjs-bullets {
text-align: center;
}
.introjs-bullets ul {
clear: both;
margin: 15px auto 0;
padding: 0;
display: inline-block;
}
.introjs-bullets ul li {
list-style: none;
float: left;
margin: 0 2px;
}
.introjs-bullets ul li a {
display: block;
width: 6px;
height: 6px;
background: #ccc;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
text-decoration: none;
}
.introjs-bullets ul li a:hover {
background: #999;
}
.introjs-bullets ul li a.active {
background: #999;
}
.introjs-progress {
background-color: #FAFAFA;
}
.introjs-progressbar {
background-color: #2980b9;
}
.introjsFloatingElement {
position: absolute;
height: 0;
width: 0;
left: 50%;
top: 50%;
}

285
node_modules/intro.js/themes/introjs-royal.css generated vendored Normal file
View file

@ -0,0 +1,285 @@
.introjs-overlay {
position: absolute;
z-index: 999999;
background: #525252;
opacity: 0;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.introjs-fixParent {
z-index: auto !important;
opacity: 1.0 !important;
}
.introjs-showElement {
z-index: 9999999 !important;
}
.introjs-relativePosition {
position: relative;
}
.introjs-helperLayer {
position: absolute;
z-index: 9999998;
background-color: #FFF;
background-color: rgba(255,255,255,.9);
border: 1px solid #777;
border: 3px solid rgba(255, 255, 255, 1);
border-radius: 0;
box-shadow: 0 8px 50px -10px rgba(0,0,0,.6);
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.introjs-helperNumberLayer {
position: absolute;
top: -29px;
left: -29px;
z-index: 9999999999 !important;
padding: 3px;
font-family: Arial, verdana, tahoma;
font-size: 13px;
font-weight: bold;
color: #DA4433; /* Old browsers */ /* Chrome10+,Safari5.1+ */
background: #FFFFFF;
width: 20px;
height:20px;
text-align: center;
line-height: 20px;
border: 3px solid #DA4433;
border-right: none;
border-bottom: none; /* IE6-9 */ /* IE10 text shadows */
border-radius: 10px 0 0 0;
}
.introjs-arrow {
border: 5px solid white;
content:'';
position: absolute;
}
.introjs-arrow.top {
top: -10px;
border-top-color:transparent;
border-right-color:transparent;
border-bottom-color: #ecf0f1;
border-left-color:transparent;
display: none !important;
}
.introjs-arrow.right {
right: -10px;
top: 10px;
border-top-color:transparent;
border-right-color:transparent;
border-bottom-color:transparent;
border-left-color:#ecf0f1;
}
.introjs-arrow.bottom {
bottom: -10px;
border-top-color:#ecf0f1;
border-right-color:transparent;
border-bottom-color:transparent;
border-left-color:transparent;
}
.introjs-arrow.left {
left: -10px;
top: 10px;
border-top-color:transparent;
border-right-color: #ecf0f1;
border-bottom-color:transparent;
border-left-color:transparent;
}
.introjs-tooltip {
position: fixed;
padding: 10px 170px 30px 10px;
background-color: #ecf0f1;
min-width: 200px;
max-width: 300px;
/* border-radius: 3px; */
border-top: 3px solid #236591;
box-shadow: 0 -6px 50px -4px rgba(0,0,0,.4);
-webkit-transition: opacity 0.1s ease-out;
-moz-transition: opacity 0.1s ease-out;
-ms-transition: opacity 0.1s ease-out;
-o-transition: opacity 0.1s ease-out;
transition: opacity 0.1s ease-out;
bottom: 0 !important;
left: 0 !Important;
top: initial !important;
right: 0 !Important;
max-width: initial;
width: auto !important;
}
.introjs-tooltiptext {
margin-left: -10px;
margin-right: -10px;
/* border-top: 1px solid #FFFFFF; */
/* background: #FAFAFA; */
color: #2c3e50;
padding: 5px 10px;
/* border-bottom: 1px solid #FFFFFF; */
}
.introjs-tooltipbuttons {
text-align: center;
position: absolute;
right: 10px;
top: 0;
}
/*
Buttons style by http://nicolasgallagher.com/lab/css3-github-buttons/
Changed by Afshin Mehrabani
*/
.introjs-button {
position: relative;
overflow: visible;
display: inline-block;
padding: 0.5em 0.8em;
box-shadow: 0 2px 0px -0px #306588;
margin: 0;
outline: none;
background: #2980b9;
text-decoration: none;
font: 11px/normal sans-serif;
color: #fff !important;
white-space: nowrap;
cursor: pointer;
outline: none !important;
-webkit-background-clip: padding;
-moz-background-clip: padding;
-o-background-clip: padding-box;
/*background-clip: padding-box;*/ /* commented out due to Opera 11.10 bug */
-webkit-border-radius: 0.2em;
-moz-border-radius: 0.2em;
border-radius: 0.2em;
/* IE hacks */
zoom: 1;
*display: inline;
margin-top: 10px;
}
.introjs-button:hover {
color: #fff;
background: #2671A2;
text-decoration: none;
box-shadow: 0 2px 0px -0px #235677;
}
.introjs-button:focus,
.introjs-button:active {
background: #23587A; text-decoration: none;
/* bottom: -1px; */
box-shadow: 0 2px 0px 0px #173B53;
}
/* overrides extra padding on button elements in Firefox */
.introjs-button::-moz-focus-inner {
padding: 0;
border: 0;
}
.introjs-skipbutton {
margin-right: 5px;
color: #fff;
background: #e74c3c;
box-shadow: 0 2px 0px -0px #B91D0D;
}
.introjs-skipbutton:hover {
background: #EB1540; box-shadow: 0 2px 0px -0px #B91D0D;
}
.introjs-skipbutton:active, .introjs-skipbutton:focus {
background: #C02312;
box-shadow: 0 1px 0px -0px #6F1309;
}
.introjs-prevbutton {
-webkit-border-radius: 0.2em 0 0 0.2em;
-moz-border-radius: 0.2em 0 0 0.2em;
border-radius: 0.2em 0 0 0.2em;
border-right: none;
}
.introjs-nextbutton {
-webkit-border-radius: 0 0.2em 0.2em 0;
-moz-border-radius: 0 0.2em 0.2em 0;
border-radius: 0 0.2em 0.2em 0;
}
.introjs-disabled, .introjs-disabled:hover, .introjs-disabled:focus {
color: #C2C2C2 !important;
border-color: #d4d4d4;
cursor: default;
box-shadow: 0 2px 0px -0px #CACED1;
background-color: #E6E6E6;
background-image: none;
text-decoration: none;
}
.introjs-bullets {
text-align: center;
float: right;
position: absolute;
right: 10px;
bottom: 10px;
}
.introjs-bullets ul {
clear: both;
margin: 15px auto 0;
padding: 0;
display: inline-block;
}
.introjs-bullets ul li {
list-style: none;
float: left;
margin: 0 2px;
}
.introjs-bullets ul li a {
display: block;
width: 6px;
height: 6px;
background: #ccc;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
text-decoration: none;
}
.introjs-bullets ul li a:hover {
background: #999;
}
.introjs-bullets ul li a.active {
background: #999;
}
.introjs-progress {
width: 20%;
position: absolute;
bottom: 10px;
background-color: #fff;
}
.introjs-progressbar {
background-color: #2980b9;
}
.introjsFloatingElement {
position: absolute;
height: 0;
width: 0;
left: 50%;
top: 50%;
}