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.

224 lines
5.6 KiB

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
  1. /*
  2. * # Semantic - Site
  3. * http://github.com/semantic-org/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. /*-------------------
  57. Background Colors
  58. --------------------*/
  59. /* Used for differentiating neutrals */
  60. /* Used for differentiating layers */
  61. /*-------------------
  62. Grid
  63. --------------------*/
  64. /*-------------------
  65. Breakpoints
  66. --------------------*/
  67. /*******************************
  68. Power-User
  69. *******************************/
  70. /*-------------------
  71. Icons
  72. --------------------*/
  73. /* Max Width of Icon */
  74. /*-------------------
  75. Easing
  76. --------------------*/
  77. /*--- Neutrals ---*/
  78. /*--- Colored Backgrounds ---*/
  79. /*--- Colored Text ---*/
  80. /*--- Colored Headers ---*/
  81. /*-------------------
  82. Emotive Colors
  83. --------------------*/
  84. /* Mood */
  85. /* Solid Background Color */
  86. /* Status */
  87. /* Darkened Headers */
  88. /*-------------------
  89. Neutral Text
  90. --------------------*/
  91. /*-------------------
  92. Brand Colors
  93. --------------------*/
  94. /*-------------------
  95. Grid Columns
  96. --------------------*/
  97. /*-------------------
  98. Borders
  99. --------------------*/
  100. /*-------------------
  101. Sizes
  102. --------------------*/
  103. /*-------------------
  104. Transitions
  105. --------------------*/
  106. /*******************************
  107. States
  108. *******************************/
  109. /*-------------------
  110. Disabled
  111. --------------------*/
  112. /*-------------------
  113. Hover
  114. --------------------*/
  115. /*--- Colors ---*/
  116. /*--- Emotive ---*/
  117. /*--- Neutrals ---*/
  118. /*-------------------
  119. Down (:active)
  120. --------------------*/
  121. /*--- Colors ---*/
  122. /*--- Emotive ---*/
  123. /*--- Neutrals ---*/
  124. /*-------------------
  125. Active
  126. --------------------*/
  127. /*--- Standard ---*/
  128. /*--- Emotive ---*/
  129. /*--- Neutrals ---*/
  130. /*------------------
  131. Load Theme
  132. -------------------*/
  133. /*------------------
  134. Load Site
  135. -------------------*/
  136. /*******************************
  137. User Global Variables
  138. *******************************/
  139. /*------------------
  140. Override Mix-in
  141. -------------------*/
  142. /*******************************
  143. Page
  144. *******************************/
  145. /* UI requires Border-Box */
  146. *,
  147. *:before,
  148. *:after {
  149. box-sizing: border-box;
  150. }
  151. html,
  152. body {
  153. font-size: 14px;
  154. height: 100%;
  155. font-smoothing: antialiased;
  156. }
  157. body {
  158. background: #f7f7f7;
  159. font-family: "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
  160. margin: 0px;
  161. padding: 0px;
  162. color: rgba(0, 0, 0, 0.8);
  163. min-width: 320px;
  164. }
  165. /*******************************
  166. Text
  167. *******************************/
  168. h1,
  169. h2,
  170. h3,
  171. h4,
  172. h5 {
  173. margin: 1em 0em 1rem;
  174. padding: 0em;
  175. }
  176. p {
  177. margin: 0em 0em 1em;
  178. }
  179. p:first-child {
  180. margin-top: 0em;
  181. }
  182. p:last-child {
  183. margin-bottom: 0em;
  184. }
  185. /*-------------------
  186. Links
  187. --------------------*/
  188. a {
  189. color: #009fda;
  190. text-decoration: none;
  191. }
  192. a:hover {
  193. color: #00b2f3;
  194. }
  195. /*******************************
  196. Highlighting
  197. *******************************/
  198. ::-webkit-selection {
  199. background-color: #ffffcc;
  200. color: rgba(0, 0, 0, 0.8);
  201. }
  202. ::-moz-selection {
  203. background-color: #ffffcc;
  204. color: rgba(0, 0, 0, 0.8);
  205. }
  206. ::selection {
  207. background-color: #ffffcc;
  208. color: rgba(0, 0, 0, 0.8);
  209. }
  210. /*******************************
  211. Global Overrides
  212. *******************************/
  213. /*******************************
  214. Overrides
  215. *******************************/