You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

452 lines
20 KiB

  1. /*
  2. * # Semantic - Steps
  3. * http://github.com/jlukic/semantic-ui/
  4. *
  5. *
  6. * Copyright 2013 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Theme
  13. *******************************/
  14. /*
  15. */
  16. /*******************************
  17. Folders
  18. *******************************/
  19. /* Path to theme packages */
  20. /* Path to site override folder */
  21. /*******************************
  22. Themes
  23. *******************************/
  24. /* To override a theme for an individual element
  25. specify theme name below
  26. Be sure to update the user folder name (see README)
  27. */
  28. /* Global */
  29. /* Elements */
  30. /* Collections */
  31. /* Modules */
  32. /* Views */
  33. /*******************************
  34. Import Directives
  35. *******************************/
  36. /*------------------
  37. Load Default
  38. -------------------*/
  39. /*******************************
  40. Global Variables
  41. *******************************/
  42. /*-------------------
  43. Paths
  44. --------------------*/
  45. /*-------------------
  46. Page
  47. --------------------*/
  48. /*-------------------
  49. Breakpoints
  50. --------------------*/
  51. /*-------------------
  52. Fonts
  53. --------------------*/
  54. /*-------------------
  55. Icons
  56. --------------------*/
  57. /* Max Width of Icon */
  58. /*-------------------
  59. Easing
  60. --------------------*/
  61. /*******************************
  62. BG Colors
  63. *******************************/
  64. /*******************************
  65. Colors
  66. *******************************/
  67. /*--- Colors ---*/
  68. /*--- Neutrals ---*/
  69. /*--- Text Colors ---*/
  70. /* Preserve */
  71. /* Adjust for Legibility */
  72. /*--- Backgrounds ---*/
  73. /*-------------------
  74. Emotive Colors
  75. --------------------*/
  76. /* Positive / Negative */
  77. /* Messages */
  78. /*-------------------
  79. Text Colors
  80. --------------------*/
  81. /*-------------------
  82. Brand Colors
  83. --------------------*/
  84. /*-------------------
  85. Borders
  86. --------------------*/
  87. /*-------------------
  88. Sizes
  89. --------------------*/
  90. /*-------------------
  91. Transitions
  92. --------------------*/
  93. /*******************************
  94. States
  95. *******************************/
  96. /*-------------------
  97. Disabled
  98. --------------------*/
  99. /*-------------------
  100. Hover
  101. --------------------*/
  102. /*--- Colors ---*/
  103. /*--- Emotive ---*/
  104. /*--- Neutrals ---*/
  105. /*-------------------
  106. Down (:active)
  107. --------------------*/
  108. /*--- Colors ---*/
  109. /*--- Emotive ---*/
  110. /*--- Neutrals ---*/
  111. /*-------------------
  112. Active
  113. --------------------*/
  114. /*--- Standard ---*/
  115. /*--- Emotive ---*/
  116. /*--- Neutrals ---*/
  117. /*-------------------
  118. Step
  119. --------------------*/
  120. /* Icon */
  121. /* Title */
  122. /* Description */
  123. /* Arrow */
  124. /*-------------------
  125. Group
  126. --------------------*/
  127. /*-------------------
  128. States
  129. --------------------*/
  130. /* Completed */
  131. /* Hover */
  132. /* Down */
  133. /* Active */
  134. /* Disabled */
  135. /*------------------
  136. Load Theme
  137. -------------------*/
  138. /*------------------
  139. Load Site
  140. -------------------*/
  141. /*******************************
  142. User Global Variables
  143. *******************************/
  144. /*******************************
  145. User Variable Overrides
  146. *******************************/
  147. /*------------------
  148. Override Mix-in
  149. -------------------*/
  150. /*******************************
  151. Step
  152. *******************************/
  153. .ui.steps .step {
  154. display: inline-block;
  155. position: relative;
  156. margin: 0em 0em;
  157. padding: 0.8em 1.75em 0.8em 2.5em;
  158. vertical-align: top;
  159. background: #ffffff;
  160. color: rgba(0, 0, 0, 0.8);
  161. -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15);
  162. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15);
  163. border-radius: 0em;
  164. }
  165. .ui.steps .step:after {
  166. position: absolute;
  167. z-index: 2;
  168. content: '';
  169. top: 50%;
  170. right: 0em;
  171. border: medium none;
  172. background-color: #ffffff;
  173. width: 1.5em;
  174. height: 1.5em;
  175. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  176. border-right: 1px solid rgba(0, 0, 0, 0.1);
  177. -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
  178. -ms-transform: translateY(-50%) translateX(50%) rotate(-45deg);
  179. transform: translateY(-50%) translateX(50%) rotate(-45deg);
  180. }
  181. .ui.steps .step,
  182. .ui.steps .step:after {
  183. -webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
  184. transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
  185. }
  186. /*******************************
  187. Content
  188. *******************************/
  189. /* Title */
  190. .ui.steps .step .title {
  191. font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  192. font-size: 1.1em;
  193. font-weight: bold;
  194. }
  195. /* Description */
  196. .ui.steps .step .description {
  197. font-weight: normal;
  198. font-size: 1em;
  199. color: rgba(0, 0, 0, 0.8);
  200. }
  201. .ui.steps .step .title ~ .description {
  202. margin-top: 0.2em;
  203. }
  204. /* Icon */
  205. .ui.steps .step > .icon,
  206. .ui.steps .step > .icon ~ .content {
  207. display: table-cell;
  208. vertical-align: top;
  209. }
  210. .ui.steps .step > .icon {
  211. font-size: 2em;
  212. margin: 0em;
  213. padding-right: 0.6em;
  214. vertical-align: middle;
  215. }
  216. /* Link */
  217. .ui.steps .link.step,
  218. .ui.steps a.step {
  219. cursor: pointer;
  220. }
  221. /*******************************
  222. Types
  223. *******************************/
  224. /*--------------
  225. Ordered
  226. ---------------*/
  227. .ui.ordered.steps {
  228. counter-reset: ordered;
  229. }
  230. .ui.ordered.steps .step:before {
  231. display: table-cell;
  232. position: static;
  233. padding-right: 0.6em;
  234. font-size: 2em;
  235. counter-increment: ordered;
  236. content: counters(ordered, ".");
  237. }
  238. .ui.ordered.steps .step > * {
  239. display: table-cell;
  240. vertical-align: top;
  241. }
  242. /*--------------
  243. Vertical
  244. ---------------*/
  245. .ui.vertical.steps {
  246. overflow: visible;
  247. }
  248. .ui.vertical.steps .step {
  249. display: block;
  250. border-radius: 0em;
  251. padding: 0.8em 1.75em;
  252. }
  253. .ui.vertical.steps .step:first-child {
  254. padding: 0.8em 1.75em;
  255. border-top-left-radius: 0.3125rem;
  256. border-top-right-radius: 0.3125rem;
  257. }
  258. .ui.vertical.steps .step:last-child {
  259. border-bottom-left-radius: 0.3125rem;
  260. border-bottom-right-radius: 0.3125rem;
  261. }
  262. /* Arrow */
  263. .ui.vertical.steps .step:after {
  264. display: none;
  265. }
  266. /* Active Arrow */
  267. .ui.vertical.steps .active.step:after {
  268. display: block;
  269. }
  270. /*******************************
  271. Group
  272. *******************************/
  273. .ui.steps {
  274. display: inline-block;
  275. font-size: 0em;
  276. background: '';
  277. -webkit-box-shadow: '';
  278. box-shadow: '';
  279. line-height: 1.2;
  280. -webkit-box-sizing: border-box;
  281. -moz-box-sizing: border-box;
  282. box-sizing: border-box;
  283. border-radius: 0.3125rem;
  284. }
  285. .ui.steps .step:first-child {
  286. padding-left: 1.75em;
  287. border-radius: 0.3125rem 0em 0em 0.3125rem;
  288. }
  289. .ui.steps .step:last-child {
  290. border-radius: 0em 0.3125rem 0.3125rem 0em;
  291. }
  292. .ui.steps .step:only-child {
  293. border-radius: 0.3125rem;
  294. }
  295. .ui.steps .step:last-child {
  296. margin-right: 0em;
  297. }
  298. .ui.steps .step:last-child:after {
  299. display: none;
  300. }
  301. /*******************************
  302. States
  303. *******************************/
  304. /* Link Hover */
  305. .ui.steps .link.step:hover::after,
  306. .ui.steps .link.step:hover,
  307. .ui.steps a.step:hover::after,
  308. .ui.steps a.step:hover {
  309. background: #ffffff;
  310. color: rgba(0, 0, 0, 0.8);
  311. }
  312. /* Link Down */
  313. .ui.steps .link.step:active::after,
  314. .ui.steps .link.step:active,
  315. .ui.steps a.step:active::after,
  316. .ui.steps a.step:active {
  317. background: #f0f0f0;
  318. color: rgba(0, 0, 0, 0.8);
  319. }
  320. /* Active */
  321. .ui.steps .step.active {
  322. cursor: auto;
  323. background: #f0f0f0;
  324. }
  325. .ui.steps .step.active:after {
  326. background: #f0f0f0;
  327. }
  328. .ui.steps .step.active .title {
  329. color: #009fda;
  330. }
  331. .ui.ordered.steps .step.active:before,
  332. .ui.steps .active.step .icon {
  333. color: rgba(0, 0, 0, 0.85);
  334. }
  335. /* Completed */
  336. .ui.steps .step.completed > .icon:before,
  337. .ui.ordered.steps .step.completed:before {
  338. color: #2ecc40;
  339. }
  340. /* Disabled */
  341. .ui.steps .disabled.step {
  342. cursor: auto;
  343. background: '';
  344. }
  345. .ui.steps .disabled.step,
  346. .ui.steps .disabled.step .title,
  347. .ui.steps .disabled.step .description {
  348. color: rgba(0, 0, 0, 0.2);
  349. }
  350. .ui.steps .disabled.step:after {
  351. background: '';
  352. }
  353. /*******************************
  354. Variations
  355. *******************************/
  356. /* Attached */
  357. .attached.ui.steps {
  358. margin: 0em;
  359. border-radius: 0.3125rem 0.3125rem 0em 0em;
  360. }
  361. .attached.ui.steps .step:first-child {
  362. border-radius: 0.3125rem 0em 0em 0em;
  363. }
  364. .attached.ui.steps .step:last-child {
  365. border-radius: 0em 0.3125rem 0em 0em;
  366. }
  367. /* Bottom Side */
  368. .bottom.attached.ui.steps {
  369. margin-top: -1px;
  370. border-radius: 0em 0em 0.3125rem 0.3125rem;
  371. }
  372. .bottom.attached.ui.steps .step:first-child {
  373. border-radius: 0em 0em 0em 0.3125rem;
  374. }
  375. .bottom.attached.ui.steps .step:last-child {
  376. border-radius: 0em 0em 0.3125rem 0em;
  377. }
  378. /* Evenly divided */
  379. .ui.one.steps,
  380. .ui.two.steps,
  381. .ui.three.steps,
  382. .ui.four.steps,
  383. .ui.five.steps,
  384. .ui.six.steps,
  385. .ui.seven.steps,
  386. .ui.eight.steps {
  387. display: block;
  388. }
  389. .ui.one.steps > .step {
  390. width: 100%;
  391. }
  392. .ui.two.steps > .step {
  393. width: 50%;
  394. }
  395. .ui.three.steps > .step {
  396. width: 33.333%;
  397. }
  398. .ui.four.steps > .step {
  399. width: 25%;
  400. }
  401. .ui.five.steps > .step {
  402. width: 20%;
  403. }
  404. .ui.six.steps > .step {
  405. width: 16.666%;
  406. }
  407. .ui.seven.steps > .step {
  408. width: 14.285%;
  409. }
  410. .ui.eight.steps > .step {
  411. width: 12.500%;
  412. }
  413. /*******************************
  414. Sizes
  415. *******************************/
  416. .ui.small.step,
  417. .ui.small.steps .step {
  418. font-size: 0.9rem;
  419. }
  420. .ui.step,
  421. .ui.steps .step {
  422. font-size: 1rem;
  423. }
  424. .ui.large.step,
  425. .ui.large.steps .step {
  426. font-size: 1.1rem;
  427. }
  428. /*******************************
  429. Overrides
  430. *******************************/
  431. /*******************************
  432. Overrides
  433. *******************************/
  434. @font-face {
  435. font-family: 'Step';
  436. src: url('data:application/octet-stream;base64,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') format('woff'), url('data:application/octet-stream;base64,AAEAAAAOAIAAAwBgT1MvMj3hSQEAAADsAAAAVmNtYXDQEhm3AAABRAAAAUpjdnQgBkn/lAAABuwAAAAcZnBnbYoKeDsAAAcIAAAJkWdhc3AAAAAQAAAG5AAAAAhnbHlm32cEdgAAApAAAAC2aGVhZAErPHsAAANIAAAANmhoZWEHUwNNAAADgAAAACRobXR4CykAAAAAA6QAAAAMbG9jYQA4AFsAAAOwAAAACG1heHAApgm8AAADuAAAACBuYW1lzJ0aHAAAA9gAAALNcG9zdK69QJgAAAaoAAAAO3ByZXCSoZr/AAAQnAAAAFYAAQO4AZAABQAIAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA6ADoAQNS/2oAWgMLAE8AAAABAAAAAAAAAAAAAwAAAAMAAAAcAAEAAAAAAEQAAwABAAAAHAAEACgAAAAGAAQAAQACAADoAf//AAAAAOgA//8AABgBAAEAAAAAAAAAAAEGAAAAAAAAAAAAAAAAA
  437. }
  438. .ui.steps .step.completed > .icon:before,
  439. .ui.ordered.steps .step.completed:before {
  440. font-family: 'Step';
  441. content: '\e800';
  442. /* '' */
  443. }