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.

247 lines
6.2 KiB

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. /*-------------------
  53. Page
  54. --------------------*/
  55. /*-------------------
  56. Background Colors
  57. --------------------*/
  58. /* Used for differentiating neutrals */
  59. /* Used for differentiating layers */
  60. /*-------------------
  61. Grid
  62. --------------------*/
  63. /*-------------------
  64. Breakpoints
  65. --------------------*/
  66. /*******************************
  67. Power-User
  68. *******************************/
  69. /*-------------------
  70. Icons
  71. --------------------*/
  72. /* Max Width of Icon */
  73. /*-------------------
  74. Easing
  75. --------------------*/
  76. /*--- Light Variations ---*/
  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. Breadcrumb
  132. *******************************/
  133. /*-------------------
  134. Globals Used
  135. --------------------*/
  136. /*-------------------
  137. Breadcrumb
  138. --------------------*/
  139. /* Coupling */
  140. /*-------------------
  141. States
  142. --------------------*/
  143. /* Sizes */
  144. /*------------------
  145. Load Theme
  146. -------------------*/
  147. /*------------------
  148. Load Site
  149. -------------------*/
  150. /*******************************
  151. User Global Variables
  152. *******************************/
  153. /*******************************
  154. Overrides
  155. *******************************/
  156. /*------------------
  157. Override Mix-in
  158. -------------------*/
  159. /*******************************
  160. Breadcrumb
  161. *******************************/
  162. .ui.breadcrumb {
  163. margin: 1em 0em;
  164. display: inline-block;
  165. vertical-align: middle;
  166. }
  167. .ui.breadcrumb:first-child {
  168. margin-top: 0em;
  169. }
  170. .ui.breadcrumb:last-child {
  171. margin-bottom: 0em;
  172. }
  173. /*******************************
  174. Content
  175. *******************************/
  176. .ui.breadcrumb .divider {
  177. display: inline-block;
  178. opacity: 0.5;
  179. margin: 0em 0.15em 0em;
  180. font-size: 1em;
  181. color: rgba(0, 0, 0, 0.4);
  182. vertical-align: baseline;
  183. }
  184. .ui.breadcrumb .icon.divider {
  185. font-size: 1em;
  186. }
  187. .ui.breadcrumb a.section {
  188. cursor: pointer;
  189. }
  190. .ui.breadcrumb .section {
  191. display: inline-block;
  192. margin: 0em;
  193. padding: 0em;
  194. }
  195. /* Loose Coupling */
  196. .ui.breadcrumb.segment {
  197. display: inline-block;
  198. padding: 0.5em 1em;
  199. }
  200. /*******************************
  201. States
  202. *******************************/
  203. .ui.breadcrumb .active.section {
  204. font-weight: bold;
  205. }
  206. /*******************************
  207. Variations
  208. *******************************/
  209. .ui.mini.breadcrumb {
  210. font-size: 0.65em;
  211. }
  212. .ui.tiny.breadcrumb {
  213. font-size: 0.7em;
  214. }
  215. .ui.small.breadcrumb {
  216. font-size: 0.75em;
  217. }
  218. .ui.breadcrumb {
  219. font-size: 1em;
  220. }
  221. .ui.large.breadcrumb {
  222. font-size: 1.1em;
  223. }
  224. .ui.big.breadcrumb {
  225. font-size: 1.05em;
  226. }
  227. .ui.huge.breadcrumb {
  228. font-size: 1.3em;
  229. }
  230. .ui.massive.breadcrumb {
  231. font-size: 1.5em;
  232. }
  233. /*******************************
  234. Overrides
  235. *******************************/
  236. /*******************************
  237. Overrides
  238. *******************************/