introjs-nazanin.css 5.8 KB

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