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.

256 lines
6.4 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
10 years ago
10 years ago
10 years ago
10 years ago
  1. /*
  2. * # Semantic - Breadcrumb
  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. /* Used to match floats with text */
  57. /*-------------------
  58. Background Colors
  59. --------------------*/
  60. /* Used for differentiating neutrals */
  61. /* Used for differentiating layers */
  62. /*-------------------
  63. Grid
  64. --------------------*/
  65. /*-------------------
  66. Breakpoints
  67. --------------------*/
  68. /*******************************
  69. Power-User
  70. *******************************/
  71. /*-------------------
  72. Icons
  73. --------------------*/
  74. /* Max Width of Icon */
  75. /*-------------------
  76. Easing
  77. --------------------*/
  78. /*--- Neutrals ---*/
  79. /*--- Colored Backgrounds ---*/
  80. /*--- Colored Text ---*/
  81. /*--- Colored Headers ---*/
  82. /*-------------------
  83. Emotive Colors
  84. --------------------*/
  85. /* Mood */
  86. /* Solid Background Color */
  87. /* Status */
  88. /* Darkened Headers */
  89. /*-------------------
  90. Neutral Text
  91. --------------------*/
  92. /*-------------------
  93. Brand Colors
  94. --------------------*/
  95. /*-------------------
  96. Grid Columns
  97. --------------------*/
  98. /*-------------------
  99. Borders
  100. --------------------*/
  101. /*-------------------
  102. Sizes
  103. --------------------*/
  104. /*-------------------
  105. Transitions
  106. --------------------*/
  107. /*******************************
  108. States
  109. *******************************/
  110. /*-------------------
  111. Disabled
  112. --------------------*/
  113. /*-------------------
  114. Hover
  115. --------------------*/
  116. /*--- Colors ---*/
  117. /*--- Emotive ---*/
  118. /*--- Neutrals ---*/
  119. /*-------------------
  120. Down (:active)
  121. --------------------*/
  122. /*--- Colors ---*/
  123. /*--- Emotive ---*/
  124. /*--- Neutrals ---*/
  125. /*-------------------
  126. Active
  127. --------------------*/
  128. /*--- Standard ---*/
  129. /*--- Emotive ---*/
  130. /*--- Neutrals ---*/
  131. /*******************************
  132. Breadcrumb
  133. *******************************/
  134. /*-------------------
  135. Breadcrumb
  136. --------------------*/
  137. /* Coupling */
  138. /*-------------------
  139. States
  140. --------------------*/
  141. /* Sizes */
  142. /*------------------
  143. Load Theme
  144. -------------------*/
  145. /*------------------
  146. Load Site
  147. -------------------*/
  148. /*******************************
  149. User Global Variables
  150. *******************************/
  151. /*******************************
  152. Overrides
  153. *******************************/
  154. /*------------------
  155. Override Mix-in
  156. -------------------*/
  157. /*******************************
  158. Breadcrumb
  159. *******************************/
  160. .ui.breadcrumb {
  161. margin: 1em 0em;
  162. display: inline-block;
  163. vertical-align: middle;
  164. }
  165. .ui.breadcrumb:first-child {
  166. margin-top: 0em;
  167. }
  168. .ui.breadcrumb:last-child {
  169. margin-bottom: 0em;
  170. }
  171. /*******************************
  172. Content
  173. *******************************/
  174. /* Divider */
  175. .ui.breadcrumb .divider {
  176. display: inline-block;
  177. opacity: 0.5;
  178. margin: 0em 0.2rem 0em;
  179. font-size: 0.9em;
  180. color: rgba(0, 0, 0, 0.4);
  181. vertical-align: baseline;
  182. }
  183. /* Link */
  184. .ui.breadcrumb a {
  185. color: #009fda;
  186. }
  187. .ui.breadcrumb a:hover {
  188. color: #00b2f3;
  189. }
  190. /* Icon Divider */
  191. .ui.breadcrumb .icon.divider {
  192. font-size: 0.7em;
  193. vertical-align: middle;
  194. }
  195. /* Section */
  196. .ui.breadcrumb a.section {
  197. cursor: pointer;
  198. }
  199. .ui.breadcrumb .section {
  200. display: inline-block;
  201. margin: 0em;
  202. padding: 0em;
  203. }
  204. /* Loose Coupling */
  205. .ui.breadcrumb.segment {
  206. display: inline-block;
  207. padding: 0.5em 1em;
  208. }
  209. /*******************************
  210. States
  211. *******************************/
  212. .ui.breadcrumb .active.section {
  213. font-weight: bold;
  214. }
  215. /*******************************
  216. Variations
  217. *******************************/
  218. .ui.mini.breadcrumb {
  219. font-size: 0.65em;
  220. }
  221. .ui.tiny.breadcrumb {
  222. font-size: 0.7em;
  223. }
  224. .ui.small.breadcrumb {
  225. font-size: 0.75em;
  226. }
  227. .ui.breadcrumb {
  228. font-size: 1em;
  229. }
  230. .ui.large.breadcrumb {
  231. font-size: 1.1em;
  232. }
  233. .ui.big.breadcrumb {
  234. font-size: 1.05em;
  235. }
  236. .ui.huge.breadcrumb {
  237. font-size: 1.3em;
  238. }
  239. .ui.massive.breadcrumb {
  240. font-size: 1.5em;
  241. }
  242. /*******************************
  243. Overrides
  244. *******************************/
  245. /*******************************
  246. Overrides
  247. *******************************/