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.

465 lines
20 KiB

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 Default
  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. /* Solid Background Color */
  87. /* Status */
  88. /* Darkened Headers */
  89. /*-------------------
  90. Neutral Text
  91. --------------------*/
  92. /*-------------------
  93. Brand Colors
  94. --------------------*/
  95. /*-------------------
  96. Grid Columns
  97. --------------------*/
  98. /*-------------------
  99. Borders
  100. --------------------*/
  101. /*-------------------
  102. Sizes
  103. --------------------*/
  104. /*-------------------
  105. Transitions
  106. --------------------*/
  107. /*******************************
  108. States
  109. *******************************/
  110. /*-------------------
  111. Disabled
  112. --------------------*/
  113. /*-------------------
  114. Hover
  115. --------------------*/
  116. /*--- Colors ---*/
  117. /*--- Emotive ---*/
  118. /*--- Neutrals ---*/
  119. /*-------------------
  120. Down (:active)
  121. --------------------*/
  122. /*--- Colors ---*/
  123. /*--- Emotive ---*/
  124. /*--- Neutrals ---*/
  125. /*-------------------
  126. Active
  127. --------------------*/
  128. /*--- Standard ---*/
  129. /*--- Emotive ---*/
  130. /*--- Neutrals ---*/
  131. /*******************************
  132. Step
  133. *******************************/
  134. /*-------------------
  135. Element
  136. --------------------*/
  137. /* Icon */
  138. /* Title */
  139. /* Description */
  140. /* Arrow */
  141. /*-------------------
  142. Group
  143. --------------------*/
  144. /*-------------------
  145. States
  146. --------------------*/
  147. /* Completed */
  148. /* Hover */
  149. /* Down */
  150. /* Active */
  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 Mix-in
  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: 1em;
  215. color: rgba(0, 0, 0, 0.8);
  216. }
  217. .ui.steps .step .title ~ .description {
  218. margin-top: 0.2em;
  219. }
  220. /* Icon */
  221. .ui.steps .step > .icon,
  222. .ui.steps .step > .icon ~ .content {
  223. display: table-cell;
  224. vertical-align: top;
  225. }
  226. .ui.steps .step > .icon {
  227. font-size: 2em;
  228. margin: 0em;
  229. padding-right: 0.6em;
  230. vertical-align: middle;
  231. }
  232. /* Link */
  233. .ui.steps .link.step,
  234. .ui.steps a.step {
  235. cursor: pointer;
  236. }
  237. /*******************************
  238. Types
  239. *******************************/
  240. /*--------------
  241. Ordered
  242. ---------------*/
  243. .ui.ordered.steps {
  244. counter-reset: ordered;
  245. }
  246. .ui.ordered.steps .step:before {
  247. display: table-cell;
  248. position: static;
  249. padding-right: 0.6em;
  250. font-size: 2em;
  251. counter-increment: ordered;
  252. content: counters(ordered, ".");
  253. }
  254. .ui.ordered.steps .step > * {
  255. display: table-cell;
  256. vertical-align: top;
  257. }
  258. /*--------------
  259. Vertical
  260. ---------------*/
  261. .ui.vertical.steps {
  262. overflow: visible;
  263. }
  264. .ui.vertical.steps .step {
  265. display: block;
  266. border-radius: 0em;
  267. padding: 0.8em 1.75em;
  268. }
  269. .ui.vertical.steps .step:first-child {
  270. padding: 0.8em 1.75em;
  271. border-top-left-radius: 0.3125rem;
  272. border-top-right-radius: 0.3125rem;
  273. }
  274. .ui.vertical.steps .step:last-child {
  275. border-bottom-left-radius: 0.3125rem;
  276. border-bottom-right-radius: 0.3125rem;
  277. }
  278. /* Arrow */
  279. .ui.vertical.steps .step:after {
  280. display: none;
  281. }
  282. /* Active Arrow */
  283. .ui.vertical.steps .active.step:after {
  284. display: block;
  285. }
  286. /*******************************
  287. Group
  288. *******************************/
  289. .ui.steps {
  290. display: inline-block;
  291. font-size: 0em;
  292. background: '';
  293. box-shadow: '';
  294. line-height: 1.2;
  295. box-sizing: border-box;
  296. border-radius: 0.3125rem;
  297. }
  298. .ui.steps .step:first-child {
  299. padding-left: 1.75em;
  300. border-radius: 0.3125rem 0em 0em 0.3125rem;
  301. }
  302. .ui.steps .step:last-child {
  303. border-radius: 0em 0.3125rem 0.3125rem 0em;
  304. }
  305. .ui.steps .step:only-child {
  306. border-radius: 0.3125rem;
  307. }
  308. .ui.steps .step:last-child {
  309. margin-right: 0em;
  310. }
  311. .ui.steps .step:last-child:after {
  312. display: none;
  313. }
  314. /*******************************
  315. States
  316. *******************************/
  317. /* Link Hover */
  318. .ui.steps .link.step:hover::after,
  319. .ui.steps .link.step:hover,
  320. .ui.steps a.step:hover::after,
  321. .ui.steps a.step:hover {
  322. background: #ffffff;
  323. color: rgba(0, 0, 0, 0.8);
  324. }
  325. /* Link Down */
  326. .ui.steps .link.step:active::after,
  327. .ui.steps .link.step:active,
  328. .ui.steps a.step:active::after,
  329. .ui.steps a.step:active {
  330. background: #f0f0f0;
  331. color: rgba(0, 0, 0, 0.8);
  332. }
  333. /* Active */
  334. .ui.steps .step.active {
  335. cursor: auto;
  336. background: #f0f0f0;
  337. }
  338. .ui.steps .step.active:after {
  339. background: #f0f0f0;
  340. }
  341. .ui.steps .step.active .title {
  342. color: #009fda;
  343. }
  344. .ui.ordered.steps .step.active:before,
  345. .ui.steps .active.step .icon {
  346. color: rgba(0, 0, 0, 0.85);
  347. }
  348. /* Completed */
  349. .ui.steps .step.completed > .icon:before,
  350. .ui.ordered.steps .step.completed:before {
  351. color: #5bbd72;
  352. }
  353. /* Disabled */
  354. .ui.steps .disabled.step {
  355. cursor: auto;
  356. background: '';
  357. }
  358. .ui.steps .disabled.step,
  359. .ui.steps .disabled.step .title,
  360. .ui.steps .disabled.step .description {
  361. color: rgba(0, 0, 0, 0.2);
  362. }
  363. .ui.steps .disabled.step:after {
  364. background: '';
  365. }
  366. /*******************************
  367. Variations
  368. *******************************/
  369. /* Attached */
  370. .attached.ui.steps {
  371. margin: 0em;
  372. border-radius: 0.3125rem 0.3125rem 0em 0em;
  373. }
  374. .attached.ui.steps .step:first-child {
  375. border-radius: 0.3125rem 0em 0em 0em;
  376. }
  377. .attached.ui.steps .step:last-child {
  378. border-radius: 0em 0.3125rem 0em 0em;
  379. }
  380. /* Bottom Side */
  381. .bottom.attached.ui.steps {
  382. margin-top: -1px;
  383. border-radius: 0em 0em 0.3125rem 0.3125rem;
  384. }
  385. .bottom.attached.ui.steps .step:first-child {
  386. border-radius: 0em 0em 0em 0.3125rem;
  387. }
  388. .bottom.attached.ui.steps .step:last-child {
  389. border-radius: 0em 0em 0.3125rem 0em;
  390. }
  391. /* Evenly divided */
  392. .ui.one.steps,
  393. .ui.two.steps,
  394. .ui.three.steps,
  395. .ui.four.steps,
  396. .ui.five.steps,
  397. .ui.six.steps,
  398. .ui.seven.steps,
  399. .ui.eight.steps {
  400. display: block;
  401. }
  402. .ui.one.steps > .step {
  403. width: 100%;
  404. }
  405. .ui.two.steps > .step {
  406. width: 50%;
  407. }
  408. .ui.three.steps > .step {
  409. width: 33.333%;
  410. }
  411. .ui.four.steps > .step {
  412. width: 25%;
  413. }
  414. .ui.five.steps > .step {
  415. width: 20%;
  416. }
  417. .ui.six.steps > .step {
  418. width: 16.666%;
  419. }
  420. .ui.seven.steps > .step {
  421. width: 14.285%;
  422. }
  423. .ui.eight.steps > .step {
  424. width: 12.500%;
  425. }
  426. /*******************************
  427. Sizes
  428. *******************************/
  429. .ui.small.step,
  430. .ui.small.steps .step {
  431. font-size: 0.9rem;
  432. }
  433. .ui.step,
  434. .ui.steps .step {
  435. font-size: 1rem;
  436. }
  437. .ui.large.step,
  438. .ui.large.steps .step {
  439. font-size: 1.1rem;
  440. }
  441. /*******************************
  442. Overrides
  443. *******************************/
  444. /*******************************
  445. Overrides
  446. *******************************/
  447. @font-face {
  448. font-family: 'Step';
  449. 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
  450. }
  451. .ui.steps .step.completed > .icon:before,
  452. .ui.ordered.steps .step.completed:before {
  453. font-family: 'Step';
  454. content: '\e800';
  455. /* '' */
  456. }