introjs-nassim.css 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. .introjs-overlay {
  2. position: absolute;
  3. z-index: 999999;
  4. background: #181818;
  5. opacity: 0;
  6. -webkit-transition: all 0.3s ease-out;
  7. -moz-transition: all 0.3s ease-out;
  8. -ms-transition: all 0.3s ease-out;
  9. -o-transition: all 0.3s ease-out;
  10. transition: all 0.3s ease-out;
  11. }
  12. .introjs-fixParent {
  13. z-index: auto !important;
  14. opacity: 1.0 !important;
  15. }
  16. .introjs-showElement {
  17. z-index: 9999999 !important;
  18. }
  19. .introjs-relativePosition {
  20. position: relative;
  21. }
  22. .introjs-helperLayer {
  23. position: absolute;
  24. z-index: 9999998;
  25. background-color: #FFF;
  26. background-color: rgba(255,255,255,.9);
  27. border: 1px solid #777;
  28. border: 2px solid rgba(117, 117, 117, 1);
  29. border-radius: 4px;
  30. box-shadow: 0 5px 8px -3px rgba(0,0,0,.6);
  31. -webkit-transition: all 0.3s ease-out;
  32. -moz-transition: all 0.3s ease-out;
  33. -ms-transition: all 0.3s ease-out;
  34. -o-transition: all 0.3s ease-out;
  35. transition: all 0.3s ease-out;
  36. }
  37. .introjs-helperNumberLayer {
  38. position: absolute;
  39. top: -16px;
  40. left: -9px;
  41. z-index: 9999999999 !important;
  42. padding: 2px;
  43. font-family: Arial, verdana, tahoma;
  44. font-size: 13px;
  45. font-weight: bold;
  46. color: #fff; /* Old browsers */ /* Chrome10+,Safari5.1+ */
  47. background: #DA4433;
  48. width: 20px;
  49. box-shadow: 0 1px 1px rgba(0,0,0,.35);
  50. height:20px;
  51. text-align: center;
  52. line-height: 20px;
  53. border: 2px solid #DA4433;
  54. border-radius: 0; /* IE6-9 */ /* IE10 text shadows */
  55. }
  56. .introjs-helperNumberLayer:after {
  57. content:"";
  58. width:0;
  59. height:0;
  60. position:absolute;
  61. content:0;
  62. left:-3px;
  63. bottom:-10px;
  64. border:4px solid transparent;
  65. border-right-color:#900;
  66. border-top-color:#900;
  67. }
  68. .introjs-arrow {
  69. border: 5px solid white;
  70. content:'';
  71. position: absolute;
  72. }
  73. .introjs-arrow.top {
  74. top: -10px;
  75. border-top-color:transparent;
  76. border-right-color:transparent;
  77. border-bottom-color: #ecf0f1;
  78. border-left-color:transparent;
  79. }
  80. .introjs-arrow.right {
  81. right: -10px;
  82. top: 10px;
  83. border-top-color:transparent;
  84. border-right-color:transparent;
  85. border-bottom-color:transparent;
  86. border-left-color:#ecf0f1;
  87. }
  88. .introjs-arrow.bottom {
  89. bottom: -10px;
  90. border-top-color:#ecf0f1;
  91. border-right-color:transparent;
  92. border-bottom-color:transparent;
  93. border-left-color:transparent;
  94. }
  95. .introjs-arrow.left {
  96. left: -10px;
  97. top: 10px;
  98. border-top-color:transparent;
  99. border-right-color: #ecf0f1;
  100. border-bottom-color:transparent;
  101. border-left-color:transparent;
  102. }
  103. .introjs-tooltip {
  104. position: absolute;
  105. padding: 10px 10px;
  106. background-color: #ecf0f1;
  107. min-width: 200px;
  108. max-width: 300px;
  109. border-radius: 3px;
  110. /* border-radius: 3px; */
  111. /* box-shadow: 0 6px 7px -4px rgba(0,0,0,.4); */
  112. -webkit-transition: opacity 0.1s ease-out;
  113. -moz-transition: opacity 0.1s ease-out;
  114. -ms-transition: opacity 0.1s ease-out;
  115. -o-transition: opacity 0.1s ease-out;
  116. transition: opacity 0.1s ease-out;
  117. /* border: 5px double #0787AF; */
  118. }
  119. .introjs-tooltiptext {
  120. margin-left: -10px;
  121. margin-right: -10px;
  122. /* border-top: 1px solid #FFFFFF; */
  123. /* background: #FAFAFA; */
  124. color: #2c3e50;
  125. padding: 25px 30px 15px;
  126. /* border-bottom: 1px solid #FFFFFF; */
  127. }
  128. .introjs-tooltipbuttons {
  129. text-align: center;
  130. /* background: rgba(0, 0, 0, 0.06); */
  131. border-radius: 0 0 8px 8px;
  132. padding-bottom: 10px;
  133. }
  134. /*
  135. Buttons style by http://nicolasgallagher.com/lab/css3-github-buttons/
  136. Changed by Afshin Mehrabani
  137. */
  138. .introjs-button {
  139. position: relative;
  140. overflow: visible;
  141. display: inline-block;
  142. padding: 0.5em 0.8em;
  143. /* box-shadow: 0 2px 0px -0px #306588; */
  144. margin: 0;
  145. outline: none;
  146. border: 2px solid;
  147. background: transparent;
  148. text-decoration: none;
  149. font: 11px/normal sans-serif;
  150. color: #2980b9 !important;
  151. white-space: nowrap;
  152. cursor: pointer;
  153. outline: none !important;
  154. -webkit-background-clip: padding;
  155. -moz-background-clip: padding;
  156. -o-background-clip: padding-box;
  157. /*background-clip: padding-box;*/ /* commented out due to Opera 11.10 bug */
  158. -webkit-border-radius: 0.2em;
  159. -moz-border-radius: 0.2em;
  160. border-radius: 0.2em;
  161. /* IE hacks */
  162. zoom: 1;
  163. *display: inline;
  164. margin-top: 10px;
  165. transition:all 0.25s ease;
  166. -webkit-transition:all 0.25s ease;
  167. -moz-transition:all 0.25s ease;
  168. -ms-transition:all 0.25s ease;
  169. -o-transition:all 0.25s ease;
  170. }
  171. .introjs-button:hover {
  172. color: #fff;
  173. background: #2671A2;
  174. text-decoration: none;
  175. border-color: #235677;
  176. }
  177. .introjs-button:focus,
  178. .introjs-button:active {
  179. background: #23587A; text-decoration: none;
  180. color: #fff;
  181. /* bottom: -1px; */
  182. box-shadow: none;
  183. border-color: #173B53;
  184. }
  185. /* overrides extra padding on button elements in Firefox */
  186. .introjs-button::-moz-focus-inner {
  187. padding: 0;
  188. border: 0;
  189. }
  190. .introjs-skipbutton {
  191. margin-right: 5px;
  192. color: #c00;
  193. background: transparent;
  194. }
  195. .introjs-skipbutton:hover {
  196. background: #EB1540;
  197. border-color: #B91D0D;
  198. }
  199. .introjs-skipbutton:active, .introjs-skipbutton:focus {
  200. background: #C02312;
  201. /* box-shadow: 0 1px 0px -0px #6F1309; */
  202. }
  203. .introjs-prevbutton {
  204. -webkit-border-radius: 0.2em 0 0 0.2em;
  205. -moz-border-radius: 0.2em 0 0 0.2em;
  206. border-radius: 0.2em 0 0 0.2em;
  207. border-right: none;
  208. }
  209. .introjs-nextbutton {
  210. -webkit-border-radius: 0 0.2em 0.2em 0;
  211. -moz-border-radius: 0 0.2em 0.2em 0;
  212. border-radius: 0 0.2em 0.2em 0;
  213. }
  214. .introjs-disabled, .introjs-disabled:hover, .introjs-disabled:focus {
  215. color: #C2C2C2 !important;
  216. border-color: #d4d4d4;
  217. cursor: default;
  218. /* box-shadow: 0 2px 0px -0px #CACED1; */
  219. background-color: #E6E6E6;
  220. background-image: none;
  221. text-decoration: none;
  222. }
  223. .introjs-bullets {
  224. text-align: center;
  225. position: absolute;
  226. left: 0;
  227. right: 0;
  228. top: -5px;
  229. }
  230. .introjs-bullets ul {
  231. clear: both;
  232. margin: 15px auto 0;
  233. padding: 0;
  234. display: inline-block;
  235. }
  236. .introjs-bullets ul li {
  237. list-style: none;
  238. float: left;
  239. margin: 0 2px;
  240. }
  241. .introjs-bullets ul li a {
  242. display: block;
  243. width: 6px;
  244. height: 6px;
  245. background: #ccc;
  246. border-radius: 10px;
  247. -moz-border-radius: 10px;
  248. -webkit-border-radius: 10px;
  249. text-decoration: none;
  250. }
  251. .introjs-bullets ul li a:hover {
  252. background: #999;
  253. }
  254. .introjs-bullets ul li a.active {
  255. background: #999;
  256. }
  257. .introjsFloatingElement {
  258. position: absolute;
  259. height: 0;
  260. width: 0;
  261. left: 50%;
  262. top: 50%;
  263. }