introjs.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  1. .introjs-overlay {
  2. position: absolute;
  3. box-sizing: content-box;
  4. z-index: 999999;
  5. background-color: #000;
  6. opacity: 0;
  7. background: -moz-radial-gradient(center,ellipse farthest-corner,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
  8. background: -webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.4)),color-stop(100%,rgba(0,0,0,0.9)));
  9. background: -webkit-radial-gradient(center,ellipse farthest-corner,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
  10. background: -o-radial-gradient(center,ellipse farthest-corner,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
  11. background: -ms-radial-gradient(center,ellipse farthest-corner,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
  12. background: radial-gradient(center,ellipse farthest-corner,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
  13. filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#66000000',endColorstr='#e6000000',GradientType=1)";
  14. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  15. filter: alpha(opacity=50);
  16. -webkit-transition: all 0.3s ease-out;
  17. -moz-transition: all 0.3s ease-out;
  18. -ms-transition: all 0.3s ease-out;
  19. -o-transition: all 0.3s ease-out;
  20. transition: all 0.3s ease-out;
  21. }
  22. .introjs-fixParent {
  23. z-index: auto !important;
  24. opacity: 1.0 !important;
  25. -webkit-transform: none !important;
  26. -moz-transform: none !important;
  27. -ms-transform: none !important;
  28. -o-transform: none !important;
  29. transform: none !important;
  30. }
  31. .introjs-showElement,
  32. tr.introjs-showElement > td,
  33. tr.introjs-showElement > th {
  34. z-index: 9999999 !important;
  35. }
  36. .introjs-disableInteraction {
  37. z-index: 99999999 !important;
  38. position: absolute;
  39. background-color: white;
  40. opacity: 0;
  41. filter: alpha(opacity=0);
  42. }
  43. .introjs-relativePosition,
  44. tr.introjs-showElement > td,
  45. tr.introjs-showElement > th {
  46. position: relative;
  47. }
  48. .introjs-helperLayer {
  49. box-sizing: content-box;
  50. position: absolute;
  51. z-index: 9999998;
  52. background-color: #FFF;
  53. background-color: rgba(255,255,255,.9);
  54. border: 1px solid #777;
  55. border: 1px solid rgba(0,0,0,.5);
  56. border-radius: 4px;
  57. box-shadow: 0 2px 15px rgba(0,0,0,.4);
  58. -webkit-transition: all 0.3s ease-out;
  59. -moz-transition: all 0.3s ease-out;
  60. -ms-transition: all 0.3s ease-out;
  61. -o-transition: all 0.3s ease-out;
  62. transition: all 0.3s ease-out;
  63. }
  64. .introjs-tooltipReferenceLayer {
  65. box-sizing: content-box;
  66. position: absolute;
  67. visibility: hidden;
  68. z-index: 100000000;
  69. background-color: transparent;
  70. -webkit-transition: all 0.3s ease-out;
  71. -moz-transition: all 0.3s ease-out;
  72. -ms-transition: all 0.3s ease-out;
  73. -o-transition: all 0.3s ease-out;
  74. transition: all 0.3s ease-out;
  75. }
  76. .introjs-helperLayer *,
  77. .introjs-helperLayer *:before,
  78. .introjs-helperLayer *:after {
  79. -webkit-box-sizing: content-box;
  80. -moz-box-sizing: content-box;
  81. -ms-box-sizing: content-box;
  82. -o-box-sizing: content-box;
  83. box-sizing: content-box;
  84. }
  85. .introjs-helperNumberLayer {
  86. box-sizing: content-box;
  87. position: absolute;
  88. visibility: visible;
  89. top: -16px;
  90. left: -16px;
  91. z-index: 9999999999 !important;
  92. padding: 2px;
  93. font-family: Arial, verdana, tahoma;
  94. font-size: 13px;
  95. font-weight: bold;
  96. color: white;
  97. text-align: center;
  98. text-shadow: 1px 1px 1px rgba(0,0,0,.3);
  99. background: #ff3019; /* Old browsers */
  100. background: -webkit-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* Chrome10+,Safari5.1+ */
  101. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff3019), color-stop(100%, #cf0404)); /* Chrome,Safari4+ */
  102. background: -moz-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* FF3.6+ */
  103. background: -ms-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* IE10+ */
  104. background: -o-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* Opera 11.10+ */
  105. background: linear-gradient(to bottom, #ff3019 0%, #cf0404 100%); /* W3C */
  106. width: 20px;
  107. height:20px;
  108. line-height: 20px;
  109. border: 3px solid white;
  110. border-radius: 50%;
  111. filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3019', endColorstr='#cf0404', GradientType=0)"; /* IE6-9 */
  112. filter: "progid:DXImageTransform.Microsoft.Shadow(direction=135, strength=2, color=ff0000)"; /* IE10 text shadows */
  113. box-shadow: 0 2px 5px rgba(0,0,0,.4);
  114. }
  115. .introjs-arrow {
  116. border: 5px solid transparent;
  117. content:'';
  118. position: absolute;
  119. }
  120. .introjs-arrow.top {
  121. top: -10px;
  122. border-bottom-color:white;
  123. }
  124. .introjs-arrow.top-right {
  125. top: -10px;
  126. right: 10px;
  127. border-bottom-color:white;
  128. }
  129. .introjs-arrow.top-middle {
  130. top: -10px;
  131. left: 50%;
  132. margin-left: -5px;
  133. border-bottom-color:white;
  134. }
  135. .introjs-arrow.right {
  136. right: -10px;
  137. top: 10px;
  138. border-left-color:white;
  139. }
  140. .introjs-arrow.right-bottom {
  141. bottom:10px;
  142. right: -10px;
  143. border-left-color:white;
  144. }
  145. .introjs-arrow.bottom {
  146. bottom: -10px;
  147. border-top-color:white;
  148. }
  149. .introjs-arrow.bottom-right {
  150. bottom: -10px;
  151. right: 10px;
  152. border-top-color:white;
  153. }
  154. .introjs-arrow.bottom-middle {
  155. bottom: -10px;
  156. left: 50%;
  157. margin-left: -5px;
  158. border-top-color:white;
  159. }
  160. .introjs-arrow.left {
  161. left: -10px;
  162. top: 10px;
  163. border-right-color:white;
  164. }
  165. .introjs-arrow.left-bottom {
  166. left: -10px;
  167. bottom:10px;
  168. border-right-color:white;
  169. }
  170. .introjs-tooltip {
  171. box-sizing: content-box;
  172. position: absolute;
  173. visibility: visible;
  174. padding: 10px;
  175. background-color: white;
  176. min-width: 200px;
  177. max-width: 300px;
  178. border-radius: 3px;
  179. box-shadow: 0 1px 10px rgba(0,0,0,.4);
  180. -webkit-transition: opacity 0.1s ease-out;
  181. -moz-transition: opacity 0.1s ease-out;
  182. -ms-transition: opacity 0.1s ease-out;
  183. -o-transition: opacity 0.1s ease-out;
  184. transition: opacity 0.1s ease-out;
  185. }
  186. .introjs-tooltipbuttons {
  187. text-align: right;
  188. white-space: nowrap;
  189. }
  190. /*
  191. Buttons style by http://nicolasgallagher.com/lab/css3-github-buttons/
  192. Changed by Afshin Mehrabani
  193. */
  194. .introjs-button {
  195. box-sizing: content-box;
  196. position: relative;
  197. overflow: visible;
  198. display: inline-block;
  199. padding: 0.3em 0.8em;
  200. border: 1px solid #d4d4d4;
  201. margin: 0;
  202. text-decoration: none;
  203. text-shadow: 1px 1px 0 #fff;
  204. font: 11px/normal sans-serif;
  205. color: #333;
  206. white-space: nowrap;
  207. cursor: pointer;
  208. outline: none;
  209. background-color: #ececec;
  210. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
  211. background-image: -moz-linear-gradient(#f4f4f4, #ececec);
  212. background-image: -o-linear-gradient(#f4f4f4, #ececec);
  213. background-image: linear-gradient(#f4f4f4, #ececec);
  214. -webkit-background-clip: padding;
  215. -moz-background-clip: padding;
  216. -o-background-clip: padding-box;
  217. /*background-clip: padding-box;*/ /* commented out due to Opera 11.10 bug */
  218. -webkit-border-radius: 0.2em;
  219. -moz-border-radius: 0.2em;
  220. border-radius: 0.2em;
  221. /* IE hacks */
  222. zoom: 1;
  223. *display: inline;
  224. margin-top: 10px;
  225. }
  226. .introjs-button:hover {
  227. border-color: #bcbcbc;
  228. text-decoration: none;
  229. box-shadow: 0px 1px 1px #e3e3e3;
  230. }
  231. .introjs-button:focus,
  232. .introjs-button:active {
  233. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ececec), to(#f4f4f4));
  234. background-image: -moz-linear-gradient(#ececec, #f4f4f4);
  235. background-image: -o-linear-gradient(#ececec, #f4f4f4);
  236. background-image: linear-gradient(#ececec, #f4f4f4);
  237. }
  238. /* overrides extra padding on button elements in Firefox */
  239. .introjs-button::-moz-focus-inner {
  240. padding: 0;
  241. border: 0;
  242. }
  243. .introjs-skipbutton {
  244. box-sizing: content-box;
  245. margin-right: 5px;
  246. color: #7a7a7a;
  247. }
  248. .introjs-prevbutton {
  249. -webkit-border-radius: 0.2em 0 0 0.2em;
  250. -moz-border-radius: 0.2em 0 0 0.2em;
  251. border-radius: 0.2em 0 0 0.2em;
  252. border-right: none;
  253. }
  254. .introjs-prevbutton.introjs-fullbutton {
  255. border: 1px solid #d4d4d4;
  256. -webkit-border-radius: 0.2em;
  257. -moz-border-radius: 0.2em;
  258. border-radius: 0.2em;
  259. }
  260. .introjs-nextbutton {
  261. -webkit-border-radius: 0 0.2em 0.2em 0;
  262. -moz-border-radius: 0 0.2em 0.2em 0;
  263. border-radius: 0 0.2em 0.2em 0;
  264. }
  265. .introjs-nextbutton.introjs-fullbutton {
  266. -webkit-border-radius: 0.2em;
  267. -moz-border-radius: 0.2em;
  268. border-radius: 0.2em;
  269. }
  270. .introjs-disabled, .introjs-disabled:hover, .introjs-disabled:focus {
  271. color: #9a9a9a;
  272. border-color: #d4d4d4;
  273. box-shadow: none;
  274. cursor: default;
  275. background-color: #f4f4f4;
  276. background-image: none;
  277. text-decoration: none;
  278. }
  279. .introjs-hidden {
  280. display: none;
  281. }
  282. .introjs-bullets {
  283. text-align: center;
  284. }
  285. .introjs-bullets ul {
  286. box-sizing: content-box;
  287. clear: both;
  288. margin: 15px auto 0;
  289. padding: 0;
  290. display: inline-block;
  291. }
  292. .introjs-bullets ul li {
  293. box-sizing: content-box;
  294. list-style: none;
  295. float: left;
  296. margin: 0 2px;
  297. }
  298. .introjs-bullets ul li a {
  299. box-sizing: content-box;
  300. display: block;
  301. width: 6px;
  302. height: 6px;
  303. background: #ccc;
  304. border-radius: 10px;
  305. -moz-border-radius: 10px;
  306. -webkit-border-radius: 10px;
  307. text-decoration: none;
  308. cursor: pointer;
  309. }
  310. .introjs-bullets ul li a:hover {
  311. background: #999;
  312. }
  313. .introjs-bullets ul li a.active {
  314. background: #999;
  315. }
  316. .introjs-progress {
  317. box-sizing: content-box;
  318. overflow: hidden;
  319. height: 10px;
  320. margin: 10px 0 5px 0;
  321. border-radius: 4px;
  322. background-color: #ecf0f1
  323. }
  324. .introjs-progressbar {
  325. box-sizing: content-box;
  326. float: left;
  327. width: 0%;
  328. height: 100%;
  329. font-size: 10px;
  330. line-height: 10px;
  331. text-align: center;
  332. background-color: #08c;
  333. }
  334. .introjsFloatingElement {
  335. position: absolute;
  336. height: 0;
  337. width: 0;
  338. left: 50%;
  339. top: 50%;
  340. }
  341. .introjs-fixedTooltip {
  342. position: fixed;
  343. }
  344. .introjs-hint {
  345. box-sizing: content-box;
  346. position: absolute;
  347. background: transparent;
  348. width: 20px;
  349. height: 15px;
  350. cursor: pointer;
  351. }
  352. .introjs-hint:focus {
  353. border: 0;
  354. outline: 0;
  355. }
  356. .introjs-hidehint {
  357. display: none;
  358. }
  359. .introjs-fixedhint {
  360. position: fixed;
  361. }
  362. .introjs-hint:hover > .introjs-hint-pulse {
  363. border: 5px solid rgba(60, 60, 60, 0.57);
  364. }
  365. .introjs-hint-pulse {
  366. box-sizing: content-box;
  367. width: 10px;
  368. height: 10px;
  369. border: 5px solid rgba(60, 60, 60, 0.27);
  370. -webkit-border-radius: 30px;
  371. -moz-border-radius: 30px;
  372. border-radius: 30px;
  373. background-color: rgba(136, 136, 136, 0.24);
  374. z-index: 10;
  375. position: absolute;
  376. -webkit-transition: all 0.2s ease-out;
  377. -moz-transition: all 0.2s ease-out;
  378. -ms-transition: all 0.2s ease-out;
  379. -o-transition: all 0.2s ease-out;
  380. transition: all 0.2s ease-out;
  381. }
  382. .introjs-hint-no-anim .introjs-hint-dot {
  383. -webkit-animation: none;
  384. -moz-animation: none;
  385. animation: none;
  386. }
  387. .introjs-hint-dot {
  388. box-sizing: content-box;
  389. border: 10px solid rgba(146, 146, 146, 0.36);
  390. background: transparent;
  391. -webkit-border-radius: 60px;
  392. -moz-border-radius: 60px;
  393. border-radius: 60px;
  394. height: 50px;
  395. width: 50px;
  396. -webkit-animation: introjspulse 3s ease-out;
  397. -moz-animation: introjspulse 3s ease-out;
  398. animation: introjspulse 3s ease-out;
  399. -webkit-animation-iteration-count: infinite;
  400. -moz-animation-iteration-count: infinite;
  401. animation-iteration-count: infinite;
  402. position: absolute;
  403. top: -25px;
  404. left: -25px;
  405. z-index: 1;
  406. opacity: 0;
  407. }
  408. @-webkit-keyframes introjspulse {
  409. 0% {
  410. -webkit-transform: scale(0);
  411. opacity: 0.0;
  412. }
  413. 25% {
  414. -webkit-transform: scale(0);
  415. opacity: 0.1;
  416. }
  417. 50% {
  418. -webkit-transform: scale(0.1);
  419. opacity: 0.3;
  420. }
  421. 75% {
  422. -webkit-transform: scale(0.5);
  423. opacity: 0.5;
  424. }
  425. 100% {
  426. -webkit-transform: scale(1);
  427. opacity: 0.0;
  428. }
  429. }
  430. @-moz-keyframes introjspulse {
  431. 0% {
  432. -moz-transform: scale(0);
  433. opacity: 0.0;
  434. }
  435. 25% {
  436. -moz-transform: scale(0);
  437. opacity: 0.1;
  438. }
  439. 50% {
  440. -moz-transform: scale(0.1);
  441. opacity: 0.3;
  442. }
  443. 75% {
  444. -moz-transform: scale(0.5);
  445. opacity: 0.5;
  446. }
  447. 100% {
  448. -moz-transform: scale(1);
  449. opacity: 0.0;
  450. }
  451. }
  452. @keyframes introjspulse {
  453. 0% {
  454. transform: scale(0);
  455. opacity: 0.0;
  456. }
  457. 25% {
  458. transform: scale(0);
  459. opacity: 0.1;
  460. }
  461. 50% {
  462. transform: scale(0.1);
  463. opacity: 0.3;
  464. }
  465. 75% {
  466. transform: scale(0.5);
  467. opacity: 0.5;
  468. }
  469. 100% {
  470. transform: scale(1);
  471. opacity: 0.0;
  472. }
  473. }