smart_wizard_theme_circles.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /*!
  2. * SmartWizard v4.x
  3. * jQuery Wizard Plugin
  4. * http://www.techlaboratory.net/smartwizard
  5. *
  6. * Created by Dipu Raj
  7. * http://dipuraj.me
  8. *
  9. * Licensed under the terms of MIT License
  10. * https://github.com/techlab/SmartWizard/blob/master/LICENSE
  11. */
  12. /* SmartWizard Theme: Circles */
  13. .sw-theme-circles {
  14. }
  15. .sw-theme-circles .sw-container {
  16. min-height: 300px;
  17. }
  18. .sw-theme-circles .step-content {
  19. padding: 10px 0;
  20. background-color: #FFF;
  21. text-align: left;
  22. }
  23. .sw-theme-circles .sw-toolbar {
  24. background: #fff;
  25. padding-left: 10px;
  26. padding-right: 10px;
  27. margin-bottom: 0 !important;
  28. }
  29. .sw-theme-circles .sw-toolbar-top {
  30. }
  31. .sw-theme-circles .sw-toolbar-bottom {
  32. border-top-color: #ddd !important;
  33. border-bottom-color: #ddd !important;
  34. }
  35. .sw-theme-circles > ul.step-anchor {
  36. position: relative;
  37. background: #fff;
  38. display: block;
  39. border: none;
  40. list-style: none;
  41. margin-bottom: 40px;
  42. }
  43. .sw-theme-circles > ul.step-anchor:before {
  44. content: " ";
  45. position: absolute;
  46. top: 40px;
  47. bottom: 0;
  48. width: 100%;
  49. height: 5px;
  50. background-color: #f5f5f5;
  51. border-radius: 3px;
  52. z-index: 0;
  53. }
  54. .sw-theme-circles > ul.step-anchor > li {
  55. border: none;
  56. margin-left: 40px;
  57. }
  58. .sw-theme-circles > ul.step-anchor > li > a {
  59. border: 2px solid #f5f5f5;
  60. background: #f5f5f5;
  61. width: 75px;
  62. height: 75px;
  63. text-align: center;
  64. padding: 25px 0;
  65. border-radius: 50%;
  66. -webkit-box-shadow: inset 0px 0px 0px 3px #fff !important;
  67. box-shadow: inset 0px 0px 0px 3px #fff !important;
  68. text-decoration: none;
  69. outline-style: none;
  70. z-index: 99;
  71. color: #bbb;
  72. background: #f5f5f5;
  73. }
  74. .sw-theme-circles > ul.step-anchor > li > a:hover {
  75. color: #bbb;
  76. background: #f5f5f5;
  77. border-width: 2px;
  78. }
  79. .sw-theme-circles > ul.step-anchor > li > a > small {
  80. position: absolute;
  81. bottom: -40px;
  82. display: block;
  83. color: #ccc;
  84. }
  85. .sw-theme-circles > ul.step-anchor > li.clickable > a:hover {
  86. color: #4285F4 !important;
  87. }
  88. .sw-theme-circles > ul.step-anchor > li.active > a {
  89. border-color: #5bc0de;
  90. color: #fff;
  91. background: #5bc0de;
  92. }
  93. .sw-theme-circles > ul.step-anchor > li.active > a > small {
  94. color: #5bc0de;
  95. }
  96. .sw-theme-circles > ul.step-anchor > li.done > a {
  97. border-color: #5cb85c;
  98. color: #fff;
  99. background: #5cb85c;
  100. }
  101. .sw-theme-circles > ul.step-anchor > li.done > a > small {
  102. color: #5cb85c;
  103. }
  104. .sw-theme-circles > ul.step-anchor > li.danger > a {
  105. border-color: #d9534f;
  106. color: #d9534f;
  107. background: #fff;
  108. }
  109. .sw-theme-circles > ul.step-anchor > li.danger > a > small {
  110. color: #d9534f;
  111. }
  112. .sw-theme-circles > ul.step-anchor > li.disabled > a, .sw-theme-circles > ul.step-anchor > li.disabled > a:hover {
  113. color: #eee !important;
  114. }
  115. /* Loader Animation
  116. Courtesy: http://bootsnipp.com/snippets/featured/loading-button-effect-no-js
  117. */
  118. .sw-theme-circles > ul.step-anchor > li.loading:before {
  119. content: '';
  120. display: inline-block;
  121. position: absolute;
  122. background: transparent;
  123. border-radius: 50%;
  124. -webkit-box-sizing: border-box;
  125. box-sizing: border-box;
  126. border: 2px solid #fff;
  127. border-top-color: transparent;
  128. border-bottom-color: transparent;
  129. border-left-color: #4285f4;
  130. border-right-color: #4285f4;
  131. width: 75px;
  132. height: 75px;
  133. z-index: 999;
  134. -webkit-animation: ld 1s ease-in-out infinite;
  135. animation: ld 1s ease-in-out infinite;
  136. }
  137. @-webkit-keyframes ld {
  138. 0% {
  139. -webkit-transform: rotate(0deg) scale(1);
  140. transform: rotate(0deg) scale(1);
  141. }
  142. 50% {
  143. -webkit-transform: rotate(180deg) scale(1.1);
  144. transform: rotate(180deg) scale(1.1);
  145. }
  146. 100% {
  147. -webkit-transform: rotate(360deg) scale(1);
  148. transform: rotate(360deg) scale(1);
  149. }
  150. }
  151. @keyframes ld {
  152. 0% {
  153. -webkit-transform: rotate(0deg) scale(1);
  154. transform: rotate(0deg) scale(1);
  155. }
  156. 50% {
  157. -webkit-transform: rotate(180deg) scale(1.1);
  158. transform: rotate(180deg) scale(1.1);
  159. }
  160. 100% {
  161. -webkit-transform: rotate(360deg) scale(1);
  162. transform: rotate(360deg) scale(1);
  163. }
  164. }