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.

199 lines
3.1 KiB

  1. /*
  2. * # Semantic - Divider
  3. * http://github.com/jlukic/semantic-ui/
  4. *
  5. *
  6. * Copyright 2013 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Divider
  13. *******************************/
  14. .ui.divider {
  15. margin: 1rem 0rem;
  16. border-top: 1px solid rgba(0, 0, 0, 0.1);
  17. border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  18. line-height: 1;
  19. height: 0em;
  20. -webkit-box-sizing: border-box;
  21. -moz-box-sizing: border-box;
  22. -ms-box-sizing: border-box;
  23. box-sizing: border-box;
  24. -webkit-user-select: none;
  25. -moz-user-select: none;
  26. -ms-user-select: none;
  27. user-select: none;
  28. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  29. }
  30. .ui.vertical.divider,
  31. .ui.horizontal.divider {
  32. position: absolute;
  33. border: none;
  34. height: 0em;
  35. margin: 0em;
  36. background-color: transparent;
  37. font-size: 0.875rem;
  38. font-weight: bold;
  39. text-align: center;
  40. text-transform: uppercase;
  41. color: rgba(0, 0, 0, 0.8);
  42. }
  43. /*--------------
  44. Vertical
  45. ---------------*/
  46. .ui.vertical.divider {
  47. position: absolute;
  48. z-index: 2;
  49. top: 50%;
  50. right: 50%;
  51. margin: 0% -3% 0% 0%;
  52. width: 6%;
  53. height: 50%;
  54. line-height: 0;
  55. padding: 0em;
  56. }
  57. .ui.vertical.divider:before,
  58. .ui.vertical.divider:after {
  59. position: absolute;
  60. right: 50%;
  61. content: " ";
  62. z-index: 3;
  63. border-right: 1px solid rgba(0, 0, 0, 0.1);
  64. border-left: 1px solid rgba(255, 255, 255, 0.8);
  65. width: 0%;
  66. height: 80%;
  67. }
  68. .ui.vertical.divider:before {
  69. top: -100%;
  70. }
  71. .ui.vertical.divider:after {
  72. top: auto;
  73. bottom: 0px;
  74. }
  75. /*--------------
  76. Horizontal
  77. ---------------*/
  78. .ui.horizontal.divider {
  79. position: relative;
  80. top: 0%;
  81. right: 0%;
  82. margin: 1rem 1.5rem;
  83. height: auto;
  84. padding: 0em;
  85. line-height: 1;
  86. }
  87. .ui.horizontal.divider:before,
  88. .ui.horizontal.divider:after {
  89. position: absolute;
  90. top: 50%;
  91. content: " ";
  92. z-index: 3;
  93. width: 50%;
  94. top: 50%;
  95. height: 0%;
  96. border-top: 1px solid rgba(0, 0, 0, 0.1);
  97. border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  98. }
  99. .ui.horizontal.divider:before {
  100. right: 0%;
  101. margin-right: -1.5rem;
  102. }
  103. .ui.horizontal.divider:after {
  104. right: auto;
  105. left: 0%;
  106. margin-left: -1.5rem;
  107. }
  108. /*--------------
  109. Icon
  110. ---------------*/
  111. .ui.divider > .icon {
  112. margin: 0em;
  113. font-size: 1rem;
  114. vertical-align: middle;
  115. }
  116. /*******************************
  117. Variations
  118. *******************************/
  119. /*--------------
  120. Inverted
  121. ---------------*/
  122. .ui.divider.inverted {
  123. color: rgba(255, 255, 255, 1);
  124. }
  125. .ui.vertical.inverted.divider,
  126. .ui.horizontal.inverted.divider {
  127. color: rgba(255, 255, 255, 0.9);
  128. }
  129. .ui.divider.inverted,
  130. .ui.divider.inverted:after,
  131. .ui.divider.inverted:before {
  132. border-top-color: rgba(0, 0, 0, 0.15);
  133. border-bottom-color: rgba(255, 255, 255, 0.15);
  134. border-right-color: rgba(0, 0, 0, 0.15);
  135. border-left-color: rgba(255, 255, 255, 0.15);
  136. }
  137. /*--------------
  138. Fitted
  139. ---------------*/
  140. .ui.fitted.divider {
  141. margin: 0em;
  142. }
  143. /*--------------
  144. Clearing
  145. ---------------*/
  146. .ui.clearing.divider {
  147. clear: both;
  148. }
  149. /*--------------
  150. Section
  151. ---------------*/
  152. .ui.section.divider {
  153. margin-top: 2rem;
  154. margin-bottom: 2rem;
  155. }