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.

284 lines
7.5 KiB

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