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.

263 lines
5.9 KiB

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