introJs.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518
  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, 1);
  54. border: 1px solid #777;
  55. border: 1px solid rgba(0, 0, 0, .1);
  56. border-radius: 4px;
  57. box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
  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: #FF5722; /* Old browsers */
  100. width: 20px;
  101. height: 20px;
  102. line-height: 20px;
  103. border: 2px solid white;
  104. border-radius: 50%;
  105. box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
  106. }
  107. .introjs-arrow {
  108. border: 5px solid transparent;
  109. content: '';
  110. position: absolute;
  111. }
  112. .introjs-arrow.top {
  113. top: -10px;
  114. border-bottom-color: white;
  115. }
  116. .introjs-arrow.top-right {
  117. top: -10px;
  118. right: 10px;
  119. border-bottom-color: white;
  120. }
  121. .introjs-arrow.top-middle {
  122. top: -10px;
  123. left: 50%;
  124. margin-left: -5px;
  125. border-bottom-color: white;
  126. }
  127. .introjs-arrow.right {
  128. right: -10px;
  129. top: 10px;
  130. border-left-color: white;
  131. }
  132. .introjs-arrow.right-bottom {
  133. bottom: 10px;
  134. right: -10px;
  135. border-left-color: white;
  136. }
  137. .introjs-arrow.bottom {
  138. bottom: -10px;
  139. border-top-color: white;
  140. }
  141. .introjs-arrow.bottom-right {
  142. bottom: -10px;
  143. right: 10px;
  144. border-top-color: white;
  145. }
  146. .introjs-arrow.bottom-middle {
  147. bottom: -10px;
  148. left: 50%;
  149. margin-left: -5px;
  150. border-top-color: white;
  151. }
  152. .introjs-arrow.left {
  153. left: -10px;
  154. top: 10px;
  155. border-right-color: white;
  156. }
  157. .introjs-arrow.left-bottom {
  158. left: -10px;
  159. bottom: 10px;
  160. border-right-color: white;
  161. }
  162. .introjs-tooltip {
  163. box-sizing: content-box;
  164. position: absolute;
  165. visibility: visible;
  166. padding: 10px;
  167. background-color: white;
  168. min-width: 200px;
  169. max-width: 300px;
  170. border-radius: 3px;
  171. box-shadow: 0 1px 10px rgba(0, 0, 0, .15);
  172. -webkit-transition: opacity 0.1s ease-out;
  173. -moz-transition: opacity 0.1s ease-out;
  174. -ms-transition: opacity 0.1s ease-out;
  175. -o-transition: opacity 0.1s ease-out;
  176. transition: opacity 0.1s ease-out;
  177. }
  178. .introjs-tooltipbuttons {
  179. text-align: right;
  180. white-space: nowrap;
  181. }
  182. /*
  183. Buttons style by http://nicolasgallagher.com/lab/css3-github-buttons/
  184. Changed by Afshin Mehrabani
  185. */
  186. .introjs-button {
  187. box-sizing: content-box;
  188. position: relative;
  189. overflow: visible;
  190. display: inline-block;
  191. padding: 0.3em 0.8em;
  192. border: 1px solid #d4d4d4;
  193. margin: 0;
  194. text-decoration: none;
  195. text-shadow: 1px 1px 0 #fff;
  196. font: 11px/normal sans-serif;
  197. color: #333;
  198. white-space: nowrap;
  199. cursor: pointer;
  200. outline: none;
  201. background-color: #ececec;
  202. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
  203. background-image: -moz-linear-gradient(#f4f4f4, #ececec);
  204. background-image: -o-linear-gradient(#f4f4f4, #ececec);
  205. background-image: linear-gradient(#f4f4f4, #ececec);
  206. -webkit-background-clip: padding;
  207. -moz-background-clip: padding;
  208. -o-background-clip: padding-box;
  209. /*background-clip: padding-box;*/ /* commented out due to Opera 11.10 bug */
  210. -webkit-border-radius: 0.2em;
  211. -moz-border-radius: 0.2em;
  212. border-radius: 0.2em;
  213. /* IE hacks */
  214. zoom: 1;
  215. *display: inline;
  216. margin-top: 10px;
  217. }
  218. .introjs-button:hover {
  219. border-color: #bcbcbc;
  220. text-decoration: none;
  221. box-shadow: 0px 1px 1px #e3e3e3;
  222. }
  223. .introjs-button:focus,
  224. .introjs-button:active {
  225. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ececec), to(#f4f4f4));
  226. background-image: -moz-linear-gradient(#ececec, #f4f4f4);
  227. background-image: -o-linear-gradient(#ececec, #f4f4f4);
  228. background-image: linear-gradient(#ececec, #f4f4f4);
  229. }
  230. /* overrides extra padding on button elements in Firefox */
  231. .introjs-button::-moz-focus-inner {
  232. padding: 0;
  233. border: 0;
  234. }
  235. .introjs-skipbutton {
  236. box-sizing: content-box;
  237. margin-right: 5px;
  238. color: #7a7a7a;
  239. }
  240. .introjs-prevbutton {
  241. -webkit-border-radius: 0.2em 0 0 0.2em;
  242. -moz-border-radius: 0.2em 0 0 0.2em;
  243. border-radius: 0.2em 0 0 0.2em;
  244. border-right: none;
  245. }
  246. .introjs-prevbutton.introjs-fullbutton {
  247. border: 1px solid #d4d4d4;
  248. -webkit-border-radius: 0.2em;
  249. -moz-border-radius: 0.2em;
  250. border-radius: 0.2em;
  251. }
  252. .introjs-nextbutton {
  253. -webkit-border-radius: 0 0.2em 0.2em 0;
  254. -moz-border-radius: 0 0.2em 0.2em 0;
  255. border-radius: 0 0.2em 0.2em 0;
  256. }
  257. .introjs-nextbutton.introjs-fullbutton {
  258. -webkit-border-radius: 0.2em;
  259. -moz-border-radius: 0.2em;
  260. border-radius: 0.2em;
  261. }
  262. .introjs-disabled, .introjs-disabled:hover, .introjs-disabled:focus {
  263. color: #9a9a9a;
  264. border-color: #d4d4d4;
  265. box-shadow: none;
  266. cursor: default;
  267. background-color: #f4f4f4;
  268. background-image: none;
  269. text-decoration: none;
  270. }
  271. .introjs-hidden {
  272. display: none;
  273. }
  274. .introjs-bullets {
  275. text-align: center;
  276. }
  277. .introjs-bullets ul {
  278. box-sizing: content-box;
  279. clear: both;
  280. margin: 15px auto 0;
  281. padding: 0;
  282. display: inline-block;
  283. }
  284. .introjs-bullets ul li {
  285. box-sizing: content-box;
  286. list-style: none;
  287. float: left;
  288. margin: 0 2px;
  289. }
  290. .introjs-bullets ul li a {
  291. box-sizing: content-box;
  292. display: block;
  293. width: 6px;
  294. height: 6px;
  295. background: #ccc;
  296. border-radius: 10px;
  297. -moz-border-radius: 10px;
  298. -webkit-border-radius: 10px;
  299. text-decoration: none;
  300. cursor: pointer;
  301. }
  302. .introjs-bullets ul li a:hover {
  303. background: #999;
  304. }
  305. .introjs-bullets ul li a.active {
  306. background: #999;
  307. }
  308. .introjs-progress {
  309. box-sizing: content-box;
  310. overflow: hidden;
  311. height: 10px;
  312. margin: 10px 0 5px 0;
  313. border-radius: 4px;
  314. background-color: #ecf0f1
  315. }
  316. .introjs-progressbar {
  317. box-sizing: content-box;
  318. float: left;
  319. width: 0%;
  320. height: 100%;
  321. font-size: 10px;
  322. line-height: 10px;
  323. text-align: center;
  324. background-color: #08c;
  325. }
  326. .introjsFloatingElement {
  327. position: absolute;
  328. height: 0;
  329. width: 0;
  330. left: 50%;
  331. top: 50%;
  332. }
  333. .introjs-fixedTooltip {
  334. position: fixed;
  335. }
  336. .introjs-hint {
  337. box-sizing: content-box;
  338. position: absolute;
  339. background: transparent;
  340. width: 20px;
  341. height: 15px;
  342. cursor: pointer;
  343. }
  344. .introjs-hint:focus {
  345. border: 0;
  346. outline: 0;
  347. }
  348. .introjs-hidehint {
  349. display: none;
  350. }
  351. .introjs-fixedhint {
  352. position: fixed;
  353. }
  354. .introjs-hint:hover > .introjs-hint-pulse {
  355. border: 5px solid rgba(60, 60, 60, 0.57);
  356. }
  357. .introjs-hint-pulse {
  358. box-sizing: content-box;
  359. width: 10px;
  360. height: 10px;
  361. border: 5px solid rgba(60, 60, 60, 0.27);
  362. -webkit-border-radius: 30px;
  363. -moz-border-radius: 30px;
  364. border-radius: 30px;
  365. background-color: rgba(136, 136, 136, 0.24);
  366. z-index: 10;
  367. position: absolute;
  368. -webkit-transition: all 0.2s ease-out;
  369. -moz-transition: all 0.2s ease-out;
  370. -ms-transition: all 0.2s ease-out;
  371. -o-transition: all 0.2s ease-out;
  372. transition: all 0.2s ease-out;
  373. }
  374. .introjs-hint-no-anim .introjs-hint-dot {
  375. -webkit-animation: none;
  376. -moz-animation: none;
  377. animation: none;
  378. }
  379. .introjs-hint-dot {
  380. box-sizing: content-box;
  381. border: 10px solid rgba(146, 146, 146, 0.36);
  382. background: transparent;
  383. -webkit-border-radius: 60px;
  384. -moz-border-radius: 60px;
  385. border-radius: 60px;
  386. height: 50px;
  387. width: 50px;
  388. -webkit-animation: introjspulse 3s ease-out;
  389. -moz-animation: introjspulse 3s ease-out;
  390. animation: introjspulse 3s ease-out;
  391. -webkit-animation-iteration-count: infinite;
  392. -moz-animation-iteration-count: infinite;
  393. animation-iteration-count: infinite;
  394. position: absolute;
  395. top: -25px;
  396. left: -25px;
  397. z-index: 1;
  398. opacity: 0;
  399. }
  400. @-webkit-keyframes introjspulse {
  401. 0% {
  402. -webkit-transform: scale(0);
  403. opacity: 0.0;
  404. }
  405. 25% {
  406. -webkit-transform: scale(0);
  407. opacity: 0.1;
  408. }
  409. 50% {
  410. -webkit-transform: scale(0.1);
  411. opacity: 0.3;
  412. }
  413. 75% {
  414. -webkit-transform: scale(0.5);
  415. opacity: 0.5;
  416. }
  417. 100% {
  418. -webkit-transform: scale(1);
  419. opacity: 0.0;
  420. }
  421. }
  422. @-moz-keyframes introjspulse {
  423. 0% {
  424. -moz-transform: scale(0);
  425. opacity: 0.0;
  426. }
  427. 25% {
  428. -moz-transform: scale(0);
  429. opacity: 0.1;
  430. }
  431. 50% {
  432. -moz-transform: scale(0.1);
  433. opacity: 0.3;
  434. }
  435. 75% {
  436. -moz-transform: scale(0.5);
  437. opacity: 0.5;
  438. }
  439. 100% {
  440. -moz-transform: scale(1);
  441. opacity: 0.0;
  442. }
  443. }
  444. @keyframes introjspulse {
  445. 0% {
  446. transform: scale(0);
  447. opacity: 0.0;
  448. }
  449. 25% {
  450. transform: scale(0);
  451. opacity: 0.1;
  452. }
  453. 50% {
  454. transform: scale(0.1);
  455. opacity: 0.3;
  456. }
  457. 75% {
  458. transform: scale(0.5);
  459. opacity: 0.5;
  460. }
  461. 100% {
  462. transform: scale(1);
  463. opacity: 0.0;
  464. }
  465. }