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.

308 lines
8.6 KiB

9 years ago
8 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
  1. /*!
  2. * # Semantic UI 2.2.0 - Reveal
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Copyright 2015 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Reveal
  13. *******************************/
  14. .ui.reveal {
  15. display: inherit;
  16. position: relative !important;
  17. font-size: 0em !important;
  18. }
  19. .ui.reveal > .visible.content {
  20. position: absolute !important;
  21. top: 0em !important;
  22. left: 0em !important;
  23. z-index: 3 !important;
  24. -webkit-transition: all 0.5s ease 0.1s;
  25. transition: all 0.5s ease 0.1s;
  26. }
  27. .ui.reveal > .hidden.content {
  28. position: relative !important;
  29. z-index: 2 !important;
  30. }
  31. /* Make sure hovered element is on top of other reveal */
  32. .ui.active.reveal .visible.content,
  33. .ui.reveal:hover .visible.content {
  34. z-index: 4 !important;
  35. }
  36. /*******************************
  37. Types
  38. *******************************/
  39. /*--------------
  40. Slide
  41. ---------------*/
  42. .ui.slide.reveal {
  43. position: relative !important;
  44. overflow: hidden !important;
  45. white-space: nowrap;
  46. }
  47. .ui.slide.reveal > .content {
  48. display: block;
  49. width: 100%;
  50. float: left;
  51. margin: 0em;
  52. -webkit-transition: -webkit-transform 0.5s ease 0.1s;
  53. transition: -webkit-transform 0.5s ease 0.1s;
  54. transition: transform 0.5s ease 0.1s;
  55. transition: transform 0.5s ease 0.1s, -webkit-transform 0.5s ease 0.1s;
  56. }
  57. .ui.slide.reveal > .visible.content {
  58. position: relative !important;
  59. }
  60. .ui.slide.reveal > .hidden.content {
  61. position: absolute !important;
  62. left: 0% !important;
  63. width: 100% !important;
  64. -webkit-transform: translateX(100%) !important;
  65. -ms-transform: translateX(100%) !important;
  66. transform: translateX(100%) !important;
  67. }
  68. .ui.slide.active.reveal > .visible.content,
  69. .ui.slide.reveal:hover > .visible.content {
  70. -webkit-transform: translateX(-100%) !important;
  71. -ms-transform: translateX(-100%) !important;
  72. transform: translateX(-100%) !important;
  73. }
  74. .ui.slide.active.reveal > .hidden.content,
  75. .ui.slide.reveal:hover > .hidden.content {
  76. -webkit-transform: translateX(0%) !important;
  77. -ms-transform: translateX(0%) !important;
  78. transform: translateX(0%) !important;
  79. }
  80. .ui.slide.right.reveal > .visible.content {
  81. -webkit-transform: translateX(0%) !important;
  82. -ms-transform: translateX(0%) !important;
  83. transform: translateX(0%) !important;
  84. }
  85. .ui.slide.right.reveal > .hidden.content {
  86. -webkit-transform: translateX(-100%) !important;
  87. -ms-transform: translateX(-100%) !important;
  88. transform: translateX(-100%) !important;
  89. }
  90. .ui.slide.right.active.reveal > .visible.content,
  91. .ui.slide.right.reveal:hover > .visible.content {
  92. -webkit-transform: translateX(100%) !important;
  93. -ms-transform: translateX(100%) !important;
  94. transform: translateX(100%) !important;
  95. }
  96. .ui.slide.right.active.reveal > .hidden.content,
  97. .ui.slide.right.reveal:hover > .hidden.content {
  98. -webkit-transform: translateX(0%) !important;
  99. -ms-transform: translateX(0%) !important;
  100. transform: translateX(0%) !important;
  101. }
  102. .ui.slide.up.reveal > .hidden.content {
  103. -webkit-transform: translateY(100%) !important;
  104. -ms-transform: translateY(100%) !important;
  105. transform: translateY(100%) !important;
  106. }
  107. .ui.slide.up.active.reveal > .visible.content,
  108. .ui.slide.up.reveal:hover > .visible.content {
  109. -webkit-transform: translateY(-100%) !important;
  110. -ms-transform: translateY(-100%) !important;
  111. transform: translateY(-100%) !important;
  112. }
  113. .ui.slide.up.active.reveal > .hidden.content,
  114. .ui.slide.up.reveal:hover > .hidden.content {
  115. -webkit-transform: translateY(0%) !important;
  116. -ms-transform: translateY(0%) !important;
  117. transform: translateY(0%) !important;
  118. }
  119. .ui.slide.down.reveal > .hidden.content {
  120. -webkit-transform: translateY(-100%) !important;
  121. -ms-transform: translateY(-100%) !important;
  122. transform: translateY(-100%) !important;
  123. }
  124. .ui.slide.down.active.reveal > .visible.content,
  125. .ui.slide.down.reveal:hover > .visible.content {
  126. -webkit-transform: translateY(100%) !important;
  127. -ms-transform: translateY(100%) !important;
  128. transform: translateY(100%) !important;
  129. }
  130. .ui.slide.down.active.reveal > .hidden.content,
  131. .ui.slide.down.reveal:hover > .hidden.content {
  132. -webkit-transform: translateY(0%) !important;
  133. -ms-transform: translateY(0%) !important;
  134. transform: translateY(0%) !important;
  135. }
  136. /*--------------
  137. Fade
  138. ---------------*/
  139. .ui.fade.reveal > .visible.content {
  140. opacity: 1;
  141. }
  142. .ui.fade.active.reveal > .visible.content,
  143. .ui.fade.reveal:hover > .visible.content {
  144. opacity: 0;
  145. }
  146. /*--------------
  147. Move
  148. ---------------*/
  149. .ui.move.reveal {
  150. position: relative !important;
  151. overflow: hidden !important;
  152. white-space: nowrap;
  153. }
  154. .ui.move.reveal > .content {
  155. display: block;
  156. float: left;
  157. margin: 0em;
  158. -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
  159. transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
  160. transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
  161. transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
  162. }
  163. .ui.move.reveal > .visible.content {
  164. position: relative !important;
  165. }
  166. .ui.move.reveal > .hidden.content {
  167. position: absolute !important;
  168. left: 0% !important;
  169. width: 100% !important;
  170. }
  171. .ui.move.active.reveal > .visible.content,
  172. .ui.move.reveal:hover > .visible.content {
  173. -webkit-transform: translateX(-100%) !important;
  174. -ms-transform: translateX(-100%) !important;
  175. transform: translateX(-100%) !important;
  176. }
  177. .ui.move.right.active.reveal > .visible.content,
  178. .ui.move.right.reveal:hover > .visible.content {
  179. -webkit-transform: translateX(100%) !important;
  180. -ms-transform: translateX(100%) !important;
  181. transform: translateX(100%) !important;
  182. }
  183. .ui.move.up.active.reveal > .visible.content,
  184. .ui.move.up.reveal:hover > .visible.content {
  185. -webkit-transform: translateY(-100%) !important;
  186. -ms-transform: translateY(-100%) !important;
  187. transform: translateY(-100%) !important;
  188. }
  189. .ui.move.down.active.reveal > .visible.content,
  190. .ui.move.down.reveal:hover > .visible.content {
  191. -webkit-transform: translateY(100%) !important;
  192. -ms-transform: translateY(100%) !important;
  193. transform: translateY(100%) !important;
  194. }
  195. /*--------------
  196. Rotate
  197. ---------------*/
  198. .ui.rotate.reveal > .visible.content {
  199. -webkit-transition-duration: 0.5s;
  200. transition-duration: 0.5s;
  201. -webkit-transform: rotate(0deg);
  202. -ms-transform: rotate(0deg);
  203. transform: rotate(0deg);
  204. }
  205. .ui.rotate.reveal > .visible.content,
  206. .ui.rotate.right.reveal > .visible.content {
  207. -webkit-transform-origin: bottom right;
  208. -ms-transform-origin: bottom right;
  209. transform-origin: bottom right;
  210. }
  211. .ui.rotate.active.reveal > .visible.conten,
  212. .ui.rotate.reveal:hover > .visible.content,
  213. .ui.rotate.right.active.reveal > .visible.content,
  214. .ui.rotate.right.reveal:hover > .visible.content {
  215. -webkit-transform: rotate(110deg);
  216. -ms-transform: rotate(110deg);
  217. transform: rotate(110deg);
  218. }
  219. .ui.rotate.left.reveal > .visible.content {
  220. -webkit-transform-origin: bottom left;
  221. -ms-transform-origin: bottom left;
  222. transform-origin: bottom left;
  223. }
  224. .ui.rotate.left.active.reveal > .visible.content,
  225. .ui.rotate.left.reveal:hover > .visible.content {
  226. -webkit-transform: rotate(-110deg);
  227. -ms-transform: rotate(-110deg);
  228. transform: rotate(-110deg);
  229. }
  230. /*******************************
  231. States
  232. *******************************/
  233. .ui.disabled.reveal:hover > .visible.visible.content {
  234. position: static !important;
  235. display: block !important;
  236. opacity: 1 !important;
  237. top: 0 !important;
  238. left: 0 !important;
  239. right: auto !important;
  240. bottom: auto !important;
  241. -webkit-transform: none !important;
  242. -ms-transform: none !important;
  243. transform: none !important;
  244. }
  245. .ui.disabled.reveal:hover > .hidden.hidden.content {
  246. display: none !important;
  247. }
  248. /*******************************
  249. Variations
  250. *******************************/
  251. /*--------------
  252. Visible
  253. ---------------*/
  254. .ui.visible.reveal {
  255. overflow: visible;
  256. }
  257. /*--------------
  258. Instant
  259. ---------------*/
  260. .ui.instant.reveal > .content {
  261. -webkit-transition-delay: 0s !important;
  262. transition-delay: 0s !important;
  263. }
  264. /*--------------
  265. Sizing
  266. ---------------*/
  267. .ui.reveal > .content {
  268. font-size: 1rem !important;
  269. }
  270. /*******************************
  271. Theme Overrides
  272. *******************************/
  273. /*******************************
  274. Site Overrides
  275. *******************************/