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.

621 lines
13 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
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
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
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 - Header
  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. Header
  132. *******************************/
  133. /*-------------------
  134. Element
  135. --------------------*/
  136. /* HTML Headings */
  137. /* Sizing */
  138. /* Sub Header */
  139. /* Icon */
  140. /* Content */
  141. /* Paragraph after Header */
  142. /*-------------------
  143. Variations
  144. --------------------*/
  145. /* Icon Header */
  146. /* Divided */
  147. /* Block */
  148. /* Attached */
  149. /* Inverted */
  150. /* Floated */
  151. /*------------------
  152. Load Theme
  153. -------------------*/
  154. /*------------------
  155. Load Site
  156. -------------------*/
  157. /*******************************
  158. User Global Variables
  159. *******************************/
  160. /*******************************
  161. User Variable Overrides
  162. *******************************/
  163. /*------------------
  164. Override Mix-in
  165. -------------------*/
  166. /*******************************
  167. Header
  168. *******************************/
  169. /* Standard */
  170. .ui.header {
  171. border: none;
  172. font-family: 'Open Sans', "Helvetica Neue", Arial, Helvetica, sans-serif;
  173. margin: 1em 0em 1rem;
  174. padding: 0em 0em;
  175. font-weight: bold;
  176. line-height: 1.33em;
  177. text-transform: none;
  178. color: rgba(0, 0, 0, 0.8);
  179. }
  180. .ui.header .sub.header {
  181. font-size: 1rem;
  182. font-weight: normal;
  183. margin: 0em;
  184. padding: 0em;
  185. line-height: 1.2em;
  186. color: rgba(0, 0, 0, 0.5);
  187. }
  188. /* Icon and Content Together */
  189. .ui.header > .icon {
  190. display: table-cell;
  191. font-size: 1em;
  192. padding-top: 0.165em;
  193. vertical-align: middle;
  194. padding-right: 0.5em;
  195. }
  196. .ui.header > .icon + .content {
  197. padding-left: 0.5em;
  198. display: table-cell;
  199. }
  200. /* Only One */
  201. .ui.header .icon:only-child {
  202. display: inline-block;
  203. padding: 0em;
  204. margin-right: 0.5em;
  205. vertical-align: baseline;
  206. }
  207. .ui.header .content {
  208. display: inline-block;
  209. vertical-align: top;
  210. }
  211. /* Positioning */
  212. .ui.header:first-child {
  213. margin-top: 0em;
  214. }
  215. .ui.header:last-child {
  216. margin-bottom: 0em;
  217. }
  218. .ui.header + p {
  219. margin-top: 0em;
  220. }
  221. /*--------------
  222. Page Heading
  223. ---------------*/
  224. h1.ui.header {
  225. min-height: 1rem;
  226. font-size: 2rem;
  227. }
  228. h2.ui.header {
  229. font-size: 1.5rem;
  230. }
  231. h3.ui.header {
  232. font-size: 1.3rem;
  233. }
  234. h4.ui.header {
  235. font-size: 1.1rem;
  236. }
  237. h5.ui.header {
  238. font-size: 1rem;
  239. }
  240. /*--------------
  241. Content Heading
  242. ---------------*/
  243. .ui.tiny.header {
  244. font-size: 1em;
  245. }
  246. .ui.small.header {
  247. font-size: 1.1em;
  248. }
  249. .ui.medium.header {
  250. font-size: 1.3em;
  251. }
  252. .ui.large.header {
  253. font-size: 1.5em;
  254. }
  255. .ui.huge.header {
  256. min-height: 1em;
  257. font-size: 2em;
  258. }
  259. /*--------------
  260. Loose Coupling
  261. ---------------*/
  262. .ui.header .ui.label {
  263. margin: 0em;
  264. vertical-align: top;
  265. }
  266. /*******************************
  267. Types
  268. *******************************/
  269. /*-------------------
  270. Icon
  271. --------------------*/
  272. .ui.icon.header {
  273. display: inline-block;
  274. text-align: center;
  275. }
  276. .ui.icon.header .icon {
  277. float: none;
  278. display: block;
  279. font-size: 3em;
  280. margin: 0em auto 0.2em;
  281. opacity: 1;
  282. padding: 0em;
  283. }
  284. .ui.icon.header .content {
  285. display: block;
  286. }
  287. .ui.icon.header .circular.icon {
  288. font-size: 2em;
  289. }
  290. .ui.icon.header .square.icon {
  291. font-size: 2em;
  292. }
  293. .ui.block.icon.header .icon {
  294. margin-bottom: 0em;
  295. }
  296. .ui.icon.header.aligned {
  297. margin-left: auto;
  298. margin-right: auto;
  299. display: block;
  300. }
  301. /*******************************
  302. States
  303. *******************************/
  304. .ui.disabled.header {
  305. opacity: 0.3;
  306. }
  307. /*******************************
  308. Variations
  309. *******************************/
  310. /*-------------------
  311. Colors
  312. --------------------*/
  313. .ui.black.header {
  314. color: #191919 !important;
  315. }
  316. a.ui.black.header:hover {
  317. color: #262626;
  318. }
  319. .ui.blue.header {
  320. color: #0074d9 !important;
  321. }
  322. a.ui.blue.header:hover {
  323. color: #0082f3;
  324. }
  325. .ui.green.header {
  326. color: #2ecc40 !important;
  327. }
  328. a.ui.green.header:hover {
  329. color: #40d451;
  330. }
  331. .ui.orange.header {
  332. color: #ff851b !important;
  333. }
  334. a.ui.orange.header:hover {
  335. color: #ff9335;
  336. }
  337. .ui.pink.header {
  338. color: #d9499a !important;
  339. }
  340. a.ui.pink.header:hover {
  341. color: #dd5ea6;
  342. }
  343. .ui.purple.header {
  344. color: #a24096 !important;
  345. }
  346. a.ui.purple.header:hover {
  347. color: #b447a7;
  348. }
  349. .ui.red.header {
  350. color: #ff4136 !important;
  351. }
  352. a.ui.red.header:hover {
  353. color: #ff5950;
  354. }
  355. .ui.teal.header {
  356. color: #39cccc !important;
  357. }
  358. a.ui.teal.header:hover {
  359. color: #4dd1d1;
  360. }
  361. .ui.yellow.header {
  362. color: #ffcb08 !important;
  363. }
  364. a.ui.yellow.header:hover {
  365. color: #ffd021;
  366. }
  367. .ui.black.dividing.header {
  368. border-bottom: 3px solid #191919;
  369. }
  370. .ui.blue.dividing.header {
  371. border-bottom: 3px solid #0074d9;
  372. }
  373. .ui.green.dividing.header {
  374. border-bottom: 3px solid #2ecc40;
  375. }
  376. .ui.orange.dividing.header {
  377. border-bottom: 3px solid #ff851b;
  378. }
  379. .ui.pink.dividing.header {
  380. border-bottom: 3px solid #d9499a;
  381. }
  382. .ui.purple.dividing.header {
  383. border-bottom: 3px solid #a24096;
  384. }
  385. .ui.red.dividing.header {
  386. border-bottom: 3px solid #ff4136;
  387. }
  388. .ui.teal.dividing.header {
  389. border-bottom: 3px solid #39cccc;
  390. }
  391. .ui.yellow.dividing.header {
  392. border-bottom: 3px solid #ffcb08;
  393. }
  394. /*-------------------
  395. Inverted
  396. --------------------*/
  397. .ui.inverted.header {
  398. color: #ffffff;
  399. }
  400. .ui.inverted.header .sub.header {
  401. color: rgba(255, 255, 255, 0.85);
  402. }
  403. .ui.inverted.attached.header {
  404. background: #333333 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  405. background: #333333 linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  406. box-shadow: none;
  407. }
  408. .ui.inverted.block.header {
  409. background: #333333 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  410. background: #333333 linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  411. box-shadow: none;
  412. }
  413. /*-------------------
  414. Inverted Colors
  415. --------------------*/
  416. .ui.inverted.black.header {
  417. color: #aaaaaa !important;
  418. }
  419. a.ui.inverted.black.header:hover {
  420. color: #b7b7b7 !important;
  421. }
  422. .ui.inverted.blue.header {
  423. color: #54c8ff !important;
  424. }
  425. a.ui.inverted.blue.header:hover {
  426. color: #6ed0ff !important;
  427. }
  428. .ui.inverted.green.header {
  429. color: #2ecc40 !important;
  430. }
  431. a.ui.inverted.green.header:hover {
  432. color: #40d451 !important;
  433. }
  434. .ui.inverted.orange.header {
  435. color: #ff851b !important;
  436. }
  437. a.ui.inverted.orange.header:hover {
  438. color: #ff9335 !important;
  439. }
  440. .ui.inverted.pink.header {
  441. color: #ff8edf !important;
  442. }
  443. a.ui.inverted.pink.header:hover {
  444. color: #ffa8e6 !important;
  445. }
  446. .ui.inverted.purple.header {
  447. color: #cdc6ff !important;
  448. }
  449. a.ui.inverted.purple.header:hover {
  450. color: #e3e0ff !important;
  451. }
  452. .ui.inverted.red.header {
  453. color: #ff695e !important;
  454. }
  455. a.ui.inverted.red.header:hover {
  456. color: #ff8178 !important;
  457. }
  458. .ui.inverted.teal.header {
  459. color: #6dffff !important;
  460. }
  461. a.ui.inverted.teal.header:hover {
  462. color: #87ffff !important;
  463. }
  464. .ui.inverted.yellow.header {
  465. color: #ffe21f !important;
  466. }
  467. a.ui.inverted.yellow.header:hover {
  468. color: #ffe539 !important;
  469. }
  470. .ui.inverted.block.header {
  471. border-bottom: none;
  472. }
  473. /*-------------------
  474. Aligned
  475. --------------------*/
  476. .ui.left.aligned.header {
  477. text-align: left;
  478. }
  479. .ui.right.aligned.header {
  480. text-align: right;
  481. }
  482. .ui.centered.header,
  483. .ui.center.aligned.header {
  484. text-align: center;
  485. }
  486. .ui.justified.header {
  487. text-align: justify;
  488. }
  489. .ui.justified.header:after {
  490. display: inline-block;
  491. content: '';
  492. width: 100%;
  493. }
  494. /*-------------------
  495. Floated
  496. --------------------*/
  497. .ui.floated.header,
  498. .ui.left.floated.header {
  499. float: left;
  500. margin-top: 0em;
  501. margin-right: 0.5em;
  502. }
  503. .ui.right.floated.header {
  504. float: right;
  505. margin-top: 0em;
  506. margin-left: 0.5em;
  507. }
  508. /*-------------------
  509. Fittted
  510. --------------------*/
  511. .ui.fitted.header {
  512. padding: 0em;
  513. }
  514. /*-------------------
  515. Dividing
  516. --------------------*/
  517. .ui.dividing.header {
  518. padding-bottom: 0.2rem;
  519. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  520. }
  521. .ui.dividing.header .sub.header {
  522. padding-bottom: 0.5rem;
  523. }
  524. .ui.dividing.header .icon {
  525. margin-bottom: 0.2em;
  526. }
  527. .ui.inverted.dividing.header {
  528. border-bottom-color: rgba(255, 255, 255, 0.2);
  529. }
  530. /*-------------------
  531. Block
  532. --------------------*/
  533. .ui.block.header {
  534. background: #fafafa -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  535. background: #fafafa linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  536. padding: 0.75rem 1rem;
  537. box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.05);
  538. border: 1px solid #dddddd;
  539. border-radius: 0.3125rem;
  540. }
  541. .ui.tiny.block.header {
  542. font-size: 0.9em;
  543. }
  544. .ui.small.block.header {
  545. font-size: 1em;
  546. }
  547. .ui.block.header {
  548. font-size: 1.1em;
  549. }
  550. .ui.large.block.header {
  551. font-size: 1.2em;
  552. }
  553. .ui.huge.block.header {
  554. font-size: 1.33em;
  555. }
  556. /*-------------------
  557. Attached
  558. --------------------*/
  559. .ui.attached.header {
  560. background: #fafafa -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  561. background: #fafafa linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  562. margin: 0em;
  563. padding: 0.75rem 1rem;
  564. box-shadow: 0px 0px 0px 1px #dddddd;
  565. border: none;
  566. margin-left: 0px;
  567. margin-right: 0px;
  568. }
  569. .ui.attached:not(.top):not(.bottom) {
  570. margin-top: 0em;
  571. margin-bottom: 0em;
  572. border-top: none;
  573. border-bottom: none;
  574. }
  575. .ui.top.attached.header {
  576. margin-bottom: 0em;
  577. border-bottom: none;
  578. border-radius: 0.3125rem 0.3125rem 0em 0em;
  579. }
  580. .ui.bottom.attached.header {
  581. margin-top: 0em;
  582. border-top: none;
  583. border-radius: 0em 0em 0.3125rem 0.3125rem;
  584. }
  585. /* Attached Sizes */
  586. .ui.tiny.attached.header {
  587. font-size: 0.9em;
  588. }
  589. .ui.small.attached.header {
  590. font-size: 1em;
  591. }
  592. .ui.attached.header {
  593. font-size: 1.1em;
  594. }
  595. .ui.large.attached.header {
  596. font-size: 1.2em;
  597. }
  598. .ui.huge.attached.header {
  599. font-size: 1.33em;
  600. }
  601. /*-------------------
  602. Sizing
  603. --------------------*/
  604. .ui.header {
  605. font-size: 1.3em;
  606. }
  607. /*******************************
  608. Overrides
  609. *******************************/
  610. /*******************************
  611. Overrides
  612. *******************************/