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.

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