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.

476 lines
20 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. /*
  2. * # Semantic - Steps
  3. * http://github.com/jlukic/semantic-ui/
  4. *
  5. *
  6. * Copyright 2014 Contributor
  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 Defaults
  38. -------------------*/
  39. /*******************************
  40. Site Settings
  41. *******************************/
  42. /*-------------------
  43. Paths
  44. --------------------*/
  45. /*-------------------
  46. Fonts
  47. --------------------*/
  48. /*-------------------
  49. Site Colors
  50. --------------------*/
  51. /*--- Colors ---*/
  52. /*--- Light Colors ---*/
  53. /*-------------------
  54. Page
  55. --------------------*/
  56. /* Used to match floats with text */
  57. /*-------------------
  58. Background Colors
  59. --------------------*/
  60. /* Used for differentiating neutrals */
  61. /* Used for differentiating layers */
  62. /*-------------------
  63. Grid
  64. --------------------*/
  65. /*-------------------
  66. Breakpoints
  67. --------------------*/
  68. /*******************************
  69. Power-User
  70. *******************************/
  71. /*-------------------
  72. Icons
  73. --------------------*/
  74. /* Max Width of Icon */
  75. /*-------------------
  76. Easing
  77. --------------------*/
  78. /*--- Neutrals ---*/
  79. /*--- Colored Backgrounds ---*/
  80. /*--- Colored Text ---*/
  81. /*--- Colored Headers ---*/
  82. /*-------------------
  83. Emotive Colors
  84. --------------------*/
  85. /* Mood */
  86. /* Status */
  87. /* Darkened Headers */
  88. /*-------------------
  89. Neutral Text
  90. --------------------*/
  91. /*-------------------
  92. Brand Colors
  93. --------------------*/
  94. /*-------------------
  95. Grid Columns
  96. --------------------*/
  97. /*-------------------
  98. Borders
  99. --------------------*/
  100. /*-------------------
  101. Sizes
  102. --------------------*/
  103. /*-------------------
  104. Transitions
  105. --------------------*/
  106. /*******************************
  107. States
  108. *******************************/
  109. /*-------------------
  110. Disabled
  111. --------------------*/
  112. /*-------------------
  113. Hover
  114. --------------------*/
  115. /*--- Colors ---*/
  116. /*--- Emotive ---*/
  117. /*--- Neutrals ---*/
  118. /*-------------------
  119. Down (:active)
  120. --------------------*/
  121. /*--- Colors ---*/
  122. /*--- Emotive ---*/
  123. /*--- Neutrals ---*/
  124. /*-------------------
  125. Active
  126. --------------------*/
  127. /*--- Standard ---*/
  128. /*--- Emotive ---*/
  129. /*--- Neutrals ---*/
  130. /*******************************
  131. Step
  132. *******************************/
  133. /*-------------------
  134. Element
  135. --------------------*/
  136. /* Icon */
  137. /* Title */
  138. /* Description */
  139. /* Arrow */
  140. /*-------------------
  141. Group
  142. --------------------*/
  143. /*-------------------
  144. States
  145. --------------------*/
  146. /* Completed */
  147. /* Hover */
  148. /* Down */
  149. /* Active */
  150. /* Active + Hover */
  151. /* Disabled */
  152. /*------------------
  153. Load Theme
  154. -------------------*/
  155. /*------------------
  156. Load Site
  157. -------------------*/
  158. /*******************************
  159. User Global Variables
  160. *******************************/
  161. /*******************************
  162. User Variable Overrides
  163. *******************************/
  164. /*------------------
  165. Override Loader
  166. -------------------*/
  167. /*******************************
  168. Step
  169. *******************************/
  170. .ui.steps .step {
  171. display: inline-block;
  172. position: relative;
  173. margin: 0em 0em;
  174. padding: 0.8em 1.75em 0.8em 2.5em;
  175. vertical-align: top;
  176. background: #ffffff;
  177. color: rgba(0, 0, 0, 0.8);
  178. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15);
  179. border-radius: 0em;
  180. }
  181. .ui.steps .step:after {
  182. position: absolute;
  183. z-index: 2;
  184. content: '';
  185. top: 50%;
  186. right: 0em;
  187. border: medium none;
  188. background-color: #ffffff;
  189. width: 1.5em;
  190. height: 1.5em;
  191. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  192. border-right: 1px solid rgba(0, 0, 0, 0.1);
  193. -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
  194. -ms-transform: translateY(-50%) translateX(50%) rotate(-45deg);
  195. transform: translateY(-50%) translateX(50%) rotate(-45deg);
  196. }
  197. .ui.steps .step,
  198. .ui.steps .step:after {
  199. -webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
  200. transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
  201. }
  202. /*******************************
  203. Content
  204. *******************************/
  205. /* Title */
  206. .ui.steps .step .title {
  207. font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  208. font-size: 1.1em;
  209. font-weight: bold;
  210. }
  211. /* Description */
  212. .ui.steps .step .description {
  213. font-weight: normal;
  214. font-size: 0.9em;
  215. color: rgba(0, 0, 0, 0.8);
  216. }
  217. .ui.steps .step .title ~ .description {
  218. margin-top: 0.1em;
  219. }
  220. /* Icon */
  221. .ui.steps .step > .icon,
  222. .ui.steps .step > .icon ~ .content {
  223. display: table-cell;
  224. vertical-align: middle;
  225. }
  226. .ui.steps .step > .icon {
  227. font-size: 2em;
  228. margin: 0em;
  229. padding-right: 0.6em;
  230. }
  231. /* Link */
  232. .ui.steps .link.step,
  233. .ui.steps a.step {
  234. cursor: pointer;
  235. }
  236. /*******************************
  237. Types
  238. *******************************/
  239. /*--------------
  240. Ordered
  241. ---------------*/
  242. .ui.ordered.steps {
  243. counter-reset: ordered;
  244. }
  245. .ui.ordered.steps .step:before {
  246. display: table-cell;
  247. position: static;
  248. padding-right: 0.6em;
  249. font-size: 2em;
  250. counter-increment: ordered;
  251. content: counters(ordered, ".");
  252. }
  253. .ui.ordered.steps .step > * {
  254. display: table-cell;
  255. vertical-align: middle;
  256. }
  257. /*--------------
  258. Vertical
  259. ---------------*/
  260. .ui.vertical.steps {
  261. overflow: visible;
  262. }
  263. .ui.vertical.steps .step {
  264. display: block;
  265. border-radius: 0em;
  266. padding: 0.8em 1.75em;
  267. }
  268. .ui.vertical.steps .step:first-child {
  269. padding: 0.8em 1.75em;
  270. border-radius: 0.3125rem 0.3125rem 0em 0em;
  271. }
  272. .ui.vertical.steps .step:last-child {
  273. border-radius: 0em 0em 0.3125rem 0.3125rem;
  274. }
  275. /* Arrow */
  276. .ui.vertical.steps .step:after {
  277. display: none;
  278. }
  279. /* Active Arrow */
  280. .ui.vertical.steps .active.step:after {
  281. display: block;
  282. }
  283. /*******************************
  284. Group
  285. *******************************/
  286. .ui.steps {
  287. display: inline-block;
  288. font-size: 0em;
  289. background: '';
  290. box-shadow: '';
  291. line-height: 1.2;
  292. box-sizing: border-box;
  293. border-radius: 0.3125rem;
  294. }
  295. .ui.steps .step:first-child {
  296. padding-left: 1.75em;
  297. border-radius: 0.3125rem 0em 0em 0.3125rem;
  298. }
  299. .ui.steps .step:last-child {
  300. border-radius: 0em 0.3125rem 0.3125rem 0em;
  301. }
  302. .ui.steps .step:only-child {
  303. border-radius: 0.3125rem;
  304. }
  305. .ui.steps .step:last-child {
  306. margin-right: 0em;
  307. }
  308. .ui.steps .step:last-child:after {
  309. display: none;
  310. }
  311. /*******************************
  312. States
  313. *******************************/
  314. /* Link Hover */
  315. .ui.steps .link.step:hover::after,
  316. .ui.steps .link.step:hover,
  317. .ui.steps a.step:hover::after,
  318. .ui.steps a.step:hover {
  319. background: #fafafa;
  320. color: rgba(0, 0, 0, 0.8);
  321. }
  322. /* Link Down */
  323. .ui.steps .link.step:active::after,
  324. .ui.steps .link.step:active,
  325. .ui.steps a.step:active::after,
  326. .ui.steps a.step:active {
  327. background: #f0f0f0;
  328. color: rgba(0, 0, 0, 0.8);
  329. }
  330. /* Active */
  331. .ui.steps .step.active {
  332. cursor: auto;
  333. background: #f0f0f0;
  334. }
  335. .ui.steps .step.active:after {
  336. background: #f0f0f0;
  337. }
  338. .ui.steps .step.active .title {
  339. color: #009fda;
  340. }
  341. .ui.ordered.steps .step.active:before,
  342. .ui.steps .active.step .icon {
  343. color: rgba(0, 0, 0, 0.85);
  344. }
  345. /* Active Hover */
  346. .ui.steps .link.active.step:hover::after,
  347. .ui.steps .link.active.step:hover,
  348. .ui.steps a.active.step:hover::after,
  349. .ui.steps a.active.step:hover {
  350. cursor: pointer;
  351. background: #ececec;
  352. color: rgba(0, 0, 0, 0.8);
  353. }
  354. /* Completed */
  355. .ui.steps .step.completed > .icon:before,
  356. .ui.ordered.steps .step.completed:before {
  357. color: #5bbd72;
  358. }
  359. /* Disabled */
  360. .ui.steps .disabled.step {
  361. cursor: auto;
  362. background: #ffffff;
  363. pointer-events: none;
  364. }
  365. .ui.steps .disabled.step,
  366. .ui.steps .disabled.step .title,
  367. .ui.steps .disabled.step .description {
  368. color: rgba(0, 0, 0, 0.2);
  369. }
  370. .ui.steps .disabled.step:after {
  371. background: #ffffff;
  372. }
  373. /*******************************
  374. Variations
  375. *******************************/
  376. /* Fluid */
  377. .ui.fluid.steps {
  378. width: 100%;
  379. }
  380. /* Attached */
  381. .attached.ui.steps {
  382. margin: 0em;
  383. border-radius: 0.3125rem 0.3125rem 0em 0em;
  384. }
  385. .attached.ui.steps .step:first-child {
  386. border-radius: 0.3125rem 0em 0em 0em;
  387. }
  388. .attached.ui.steps .step:last-child {
  389. border-radius: 0em 0.3125rem 0em 0em;
  390. }
  391. /* Bottom Side */
  392. .bottom.attached.ui.steps {
  393. margin-top: -1px;
  394. border-radius: 0em 0em 0.3125rem 0.3125rem;
  395. }
  396. .bottom.attached.ui.steps .step:first-child {
  397. border-radius: 0em 0em 0em 0.3125rem;
  398. }
  399. .bottom.attached.ui.steps .step:last-child {
  400. border-radius: 0em 0em 0.3125rem 0em;
  401. }
  402. /* Evenly divided */
  403. .ui.one.steps,
  404. .ui.two.steps,
  405. .ui.three.steps,
  406. .ui.four.steps,
  407. .ui.five.steps,
  408. .ui.six.steps,
  409. .ui.seven.steps,
  410. .ui.eight.steps {
  411. display: block;
  412. }
  413. .ui.one.steps > .step {
  414. width: 100%;
  415. }
  416. .ui.two.steps > .step {
  417. width: 50%;
  418. }
  419. .ui.three.steps > .step {
  420. width: 33.333%;
  421. }
  422. .ui.four.steps > .step {
  423. width: 25%;
  424. }
  425. .ui.five.steps > .step {
  426. width: 20%;
  427. }
  428. .ui.six.steps > .step {
  429. width: 16.666%;
  430. }
  431. .ui.seven.steps > .step {
  432. width: 14.285%;
  433. }
  434. .ui.eight.steps > .step {
  435. width: 12.500%;
  436. }
  437. /*******************************
  438. Sizes
  439. *******************************/
  440. .ui.small.step,
  441. .ui.small.steps .step {
  442. font-size: 0.9rem;
  443. }
  444. .ui.step,
  445. .ui.steps .step {
  446. font-size: 1rem;
  447. }
  448. .ui.large.step,
  449. .ui.large.steps .step {
  450. font-size: 1.1rem;
  451. }
  452. /*******************************
  453. Overrides
  454. *******************************/
  455. /*******************************
  456. Overrides
  457. *******************************/
  458. @font-face {
  459. font-family: 'Step';
  460. src: url('data:application/octet-stream;base64,d09GRgABAAAAAAoUAA4AAAAAEPQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAEQAAABWPeFJAWNtYXAAAAGIAAAAOgAAAUrQEhm3Y3Z0IAAAAcQAAAAUAAAAHAZJ/5RmcGdtAAAB2AAABPkAAAmRigp4O2dhc3AAAAbUAAAACAAAAAgAAAAQZ2x5ZgAABtwAAACuAAAAtt9nBHZoZWFkAAAHjAAAADUAAAA2ASs8e2hoZWEAAAfEAAAAIAAAACQHUwNNaG10eAAAB+QAAAAMAAAADAspAABsb2NhAAAH8AAAAAgAAAAIADgAW21heHAAAAf4AAAAIAAAACAApgm8bmFtZQAACBgAAAF3AAACzcydGhxwb3N0AAAJkAAAACoAAAA7rr1AmHByZXAAAAm8AAAAVgAAAFaSoZr/eJxjYGTewTiBgZWBg6mKaQ8DA0MPhGZ8wGDIyMTAwMTAysyAFQSkuaYwOLxgeMHIHPQ/iyGKmZvBHyjMCJIDAPe9C2B4nGNgYGBmgGAZBkYGEHAB8hjBfBYGDSDNBqQZGZgYGF4w/v8PUvCCAURLMELVAwEjG8OIBwBk5AavAAB4nGNgQANGDEbM3P83gjAAELQD4XicnVXZdtNWFJU8ZHASOmSgoA7X3DhQ68qEKRgwaSrFdiEdHAitBB2kDHTkncc+62uOQrtWH/m07n09JLR0rbYsls++R1tn2DrnRhwjKn0aiGvUoZKXA6msPZZK90lc13Uvj5UMBnFdthJPSZuonSRKat3sUC7xWOsqWSdYJ+PlIFZPVZ5noAziFB5lSUQbRBuplyZJ4onjJ4kWZxAfJUkgJaMQp9LIUEI1GsRS1aFM6dCr1xNx00DKRqMedVhU90PFJ8c1p9SsA0YqVznCFevVRr4bpwMve5DEOsGzrYcxHnisfpQqkIqR6cg/dkpOlIaBVHHUoVbi6DCTX/eRTCrNQKaMYkWl7oG43f102xYxPXQ6vi5KlUaqurnOKJrt0fGogygP2cbppNzQ2fbw5RlTVKtdcbPtQGYNXErJbHSfRAAdJlLj6QFONZwCqRn1R8XZ588BEslclKo8VTKHegOZMzt7cTHtbiersnCknwcyb3Z2452HQ6dXh3/R+hdM4cxHj+Jifj5C+lBqfiJOJKVGWMzyp4YfcVcgQrkxiAsXyuBThDl0RdrZZl3jtTH2hs/5SqlhPQna6KP4fgr9TiQrHGdRo/VInM1j13Wt3GdQS7W7Fzsyr0OVIu7vCwuuM+eEYZ4WC1VfnvneBTT/Bohn/EDeNIVL+5YpSrRvm6JMu2iKCu0SVKVdNsUU7YoppmnPmmKG9h1TzNKeMzLj/8vc55H7HN7xkJv2XeSmfQ+5ad9HbtoPkJtWITdtHblpLyA3rUZu2lWjOnYEGgZpF1IVQdA0svph3Fab9UDWjDR8aWDyLmLI+upER521tcofxX914gsHcmmip7siF5viLq/bFj483e6rj5pG3bDV+MaR8jAeRnocmtBZ+c3hv+1N3S6a7jKqMugBFUwKwABl7UAC0zrbCaT1mqf48gdgXIZ4zkpDtVSfO4am7+V5X/exOfG+x+3GLrdcd3kJWdYNcmP28N9SZKrrH+UtrVQnR6wrJ49VaxhDKrwour6SlHu0tRu/KKmy8l6U1srnk5CbPYMbQlu27mGwI0xpyiUeXlOlKD3UUo6yQyxvKco84JSLC1qGxLgOdQ9qa8TpoXoYGwshhqG0vRBwSCldFd+0ynfxHqtr2Oj4xRXh6XpyEhGf4ir7UfBU10b96A7avGbdMoMpVaqn+4xPsa/b9lFZaaSOsxe3VAfXNOsaORXTT+Rr4HRvOGjdAz1UfDRBI1U1x+jGKGM0ljXl3wR0MVZ+w2jVYvs93E+dpFWsuUuY7JsT9+C0u/0q+7WcW0bW/dcGvW3kip8jMb8tCvw7B2K3ZA3UO5OBGAvIWdAYxhYmdxiug23EbfY/Jqf/34aFRXJXOxq7eerD1ZNRJXfZ8rjLTXZZ16M2R9VOGvsIjS0PN+bY4XIstsRgQbb+wf8x7gF3aVEC4NDIZZiI2nShnurh6h6rsW04VxIBds2x43QAegAuQd8cu9bzCYD13CPnLsB9cgh2yCH4lByCz8i5BfA5OQRfkEMwIIdgl5w7AA/IIXhIDsEeOQSPyNkE+JIcgq/IIYjJIUjIuQ3wmByCJ+QQfE0OwTdGrk5k/pYH2QD6zqKbQKmdGhzaOGRGrk3Y+zxY9oFFZB9aROqRkesT6lMeLPV7i0j9wSJSfzRyY0L9iQdL/dkiUn+xiNRnxpeZIymvDp7zjg7+BJfqrV4AAAAAAQAB//8AD3icY2BkAALmJUwzGEQZZBwk+RkZGBmdGJgYmbIYgMwsoGSiiLgIs5A2owg7I5uSOqOaiT2jmZE8I5gQY17C/09BQEfg3yt+fh8gvYQxD0j68DOJiQn8U+DnZxQDcQUEljLmCwBpBgbG/3//b2SOZ+Zm4GEQcuAH2sblDLSEm8FFVJhJEGgLH6OSHpMdo5EcI3Nk0bEXJ/LYqvZ82VXHGFd6pKTkyCsQwQAAq+QkqAAAeJxjYGRgYADiw5VSsfH8Nl8ZuJlfAEUYzpvO6IXQCb7///7fyLyEmRvI5WBgAokCAFb/DJAAAAB4nGNgZGBgDvqfxRDF/IKB4f935iUMQBEUwAwAi5YFpgPoAAAD6AAAA1kAAAAAAAAAOABbAAEAAAADABYAAQAAAAAAAgAGABMAbgAAAC0JkQAAAAB4nHWQy2rCQBSG//HSi0JbWui2sypKabxgN4IgWHTTbqS4LTHGJBIzMhkFX6Pv0IfpS/RZ+puMpShNmMx3vjlz5mQAXOMbAvnzxJGzwBmjnAs4Rc9ykf7Zcon8YrmMKt4sn9C/W67gAYHlKm7wwQqidM5ogU/LAlfi0nIBF+LOcpH+0XKJ3LNcxq14tXxC71muYCJSy1Xci6+BWm11FIRG1gZ12W62OnK6lYoqStxYumsTKp3KvpyrxPhxrBxPLfc89oN17Op9uJ8nvk4jlciW09yrkZ/42jX+bFc93QRtY+ZyrtVSDm2GXGm18D3jhMasuo3G3/MwgMIKW2hEvKoQBhI12jrnNppooUOaMkMyM8+KkMBFTONizR1htpIy7nPMGSW0PjNisgOP3+WRH5MC7o9ZRR+tHsYT0u6MKPOSfTns7jBrREqyTDezs9/eU2x4WpvWcNeuS511JTE8qCF5H7u1BY1H72S3Ymi7aPD95/9+AN1fhEsAeJxjYGKAAC4G7ICZgYGRiZGZMzkjNTk7N7Eomy05syg5J5WBAQBE1QZBAABLuADIUlixAQGOWbkIAAgAYyCwASNEsAMjcLIEKAlFUkSyCgIHKrEGAUSxJAGIUViwQIhYsQYDRLEmAYhRWLgEAIhYsQYBRFlZWVm4Af+FsASNsQUARAAA') format('woff'), url('data:application/octet-stream;base64,AAEAAAAOAIAAAwBgT1MvMj3hSQEAAADsAAAAVmNtYXDQEhm3AAABRAAAAUpjdnQgBkn/lAAABuwAAAAcZnBnbYoKeDsAAAcIAAAJkWdhc3AAAAAQAAAG5AAAAAhnbHlm32cEdgAAApAAAAC2aGVhZAErPHsAAANIAAAANmhoZWEHUwNNAAADgAAAACRobXR4CykAAAAAA6QAAAAMbG9jYQA4AFsAAAOwAAAACG1heHAApgm8AAADuAAAACBuYW1lzJ0aHAAAA9gAAALNcG9zdK69QJgAAAaoAAAAO3ByZXCSoZr/AAAQnAAAAFYAAQO4AZAABQAIAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA6ADoAQNS/2oAWgMLAE8AAAABAAAAAAAAAAAAAwAAAAMAAAAcAAEAAAAAAEQAAwABAAAAHAAEACgAAAAGAAQAAQACAADoAf//AAAAAOgA//8AABgBAAEAAAAAAAAAAAEGAAAAAAAAAAAAAAAAA
  461. }
  462. .ui.steps .step.completed > .icon:before,
  463. .ui.ordered.steps .step.completed:before {
  464. font-family: 'Step';
  465. content: '\e800';
  466. /* '' */
  467. }