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.

724 lines
12 KiB

9 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 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
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
  1. /*!
  2. * # Semantic UI 2.0.0 - Header
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Copyright 2015 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Header
  13. *******************************/
  14. /* Standard */
  15. .ui.header {
  16. border: none;
  17. margin: -webkit-calc(2rem - 0.165em ) 0em 1rem;
  18. margin: calc(2rem - 0.165em ) 0em 1rem;
  19. padding: 0em 0em;
  20. font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  21. font-weight: bold;
  22. line-height: 1.33em;
  23. text-transform: none;
  24. color: rgba(0, 0, 0, 0.87);
  25. }
  26. .ui.header:first-child {
  27. margin-top: -0.165em;
  28. }
  29. .ui.header:last-child {
  30. margin-bottom: 0em;
  31. }
  32. /*--------------
  33. Sub Header
  34. ---------------*/
  35. .ui.header .sub.header {
  36. font-weight: normal;
  37. padding: 0em;
  38. margin: 0em;
  39. font-size: 1rem;
  40. line-height: 1.2em;
  41. color: rgba(0, 0, 0, 0.6);
  42. }
  43. /*--------------
  44. Icon
  45. ---------------*/
  46. .ui.header > .icon {
  47. display: table-cell;
  48. opacity: 1;
  49. font-size: 1.5em;
  50. padding-top: 0.165em;
  51. vertical-align: middle;
  52. }
  53. /* With Text Node */
  54. .ui.header .icon:only-child {
  55. display: inline-block;
  56. padding: 0em;
  57. margin-right: 0.75rem;
  58. }
  59. /*-------------------
  60. Image
  61. --------------------*/
  62. .ui.header > .image,
  63. .ui.header > img {
  64. display: inline-block;
  65. margin-top: 0.165em;
  66. width: 2.5em;
  67. height: auto;
  68. vertical-align: middle;
  69. }
  70. .ui.header > .image:only-child,
  71. .ui.header > img:only-child {
  72. margin-right: 0.75rem;
  73. }
  74. /*--------------
  75. Content
  76. ---------------*/
  77. .ui.header .content {
  78. display: inline-block;
  79. vertical-align: top;
  80. }
  81. /* After Image */
  82. .ui.header > img + .content,
  83. .ui.header > .image + .content {
  84. padding-left: 0.75rem;
  85. vertical-align: middle;
  86. }
  87. /* After Icon */
  88. .ui.header > .icon + .content {
  89. padding-left: 0.75rem;
  90. display: table-cell;
  91. vertical-align: middle;
  92. }
  93. /*--------------
  94. Loose Coupling
  95. ---------------*/
  96. .ui.header .ui.label {
  97. font-size: '';
  98. margin-left: 0.5rem;
  99. vertical-align: middle;
  100. }
  101. /* Positioning */
  102. .ui.header + p {
  103. margin-top: 0em;
  104. }
  105. /*******************************
  106. Types
  107. *******************************/
  108. /*--------------
  109. Page
  110. ---------------*/
  111. h1.ui.header {
  112. font-size: 2rem;
  113. }
  114. h2.ui.header {
  115. font-size: 1.714rem;
  116. }
  117. h3.ui.header {
  118. font-size: 1.28rem;
  119. }
  120. h4.ui.header {
  121. font-size: 1.071rem;
  122. }
  123. h5.ui.header {
  124. font-size: 1rem;
  125. }
  126. /* Sub Header */
  127. h1.ui.header .sub.header {
  128. font-size: 1.1428rem;
  129. }
  130. h2.ui.header .sub.header {
  131. font-size: 1.1428rem;
  132. }
  133. h3.ui.header .sub.header {
  134. font-size: 1rem;
  135. }
  136. h4.ui.header .sub.header {
  137. font-size: 1rem;
  138. }
  139. h5.ui.header .sub.header {
  140. font-size: 0.9285rem;
  141. }
  142. /*--------------
  143. Content Heading
  144. ---------------*/
  145. .ui.huge.header {
  146. min-height: 1em;
  147. font-size: 2em;
  148. }
  149. .ui.large.header {
  150. font-size: 1.714em;
  151. }
  152. .ui.medium.header {
  153. font-size: 1.28em;
  154. }
  155. .ui.small.header {
  156. font-size: 1.071em;
  157. }
  158. .ui.tiny.header {
  159. font-size: 1em;
  160. }
  161. /* Sub Header */
  162. .ui.huge.header .sub.header {
  163. font-size: 1.1428rem;
  164. }
  165. .ui.large.header .sub.header {
  166. font-size: 1.1428rem;
  167. }
  168. .ui.header .sub.header {
  169. font-size: 1rem;
  170. }
  171. .ui.small.header .sub.header {
  172. font-size: 1rem;
  173. }
  174. .ui.tiny.header .sub.header {
  175. font-size: 0.9285rem;
  176. }
  177. /*--------------
  178. Sub Heading
  179. ---------------*/
  180. .ui.sub.header {
  181. padding: 0em;
  182. margin: -webkit-calc(2rem - 0.165em ) 0em 0.1428rem;
  183. margin: calc(2rem - 0.165em ) 0em 0.1428rem;
  184. font-weight: bold;
  185. font-size: 0.85714286em;
  186. text-transform: uppercase;
  187. color: '';
  188. }
  189. .ui.small.sub.header {
  190. font-size: 0.71428571em;
  191. }
  192. .ui.sub.header {
  193. font-size: 0.85714286em;
  194. }
  195. .ui.large.sub.header {
  196. font-size: 0.92857143em;
  197. }
  198. .ui.huge.sub.header {
  199. font-size: 1em;
  200. }
  201. /*-------------------
  202. Icon
  203. --------------------*/
  204. .ui.icon.header {
  205. display: inline-block;
  206. text-align: center;
  207. margin: 2rem 0em 1rem;
  208. }
  209. .ui.icon.header:after {
  210. content: '';
  211. display: block;
  212. height: 0px;
  213. clear: both;
  214. visibility: hidden;
  215. }
  216. .ui.icon.header:first-child {
  217. margin-top: 0em;
  218. }
  219. .ui.icon.header .icon {
  220. float: none;
  221. display: block;
  222. width: auto;
  223. height: auto;
  224. line-height: 1;
  225. padding: 0em;
  226. font-size: 3em;
  227. margin: 0em auto 0.25rem;
  228. opacity: 1;
  229. }
  230. .ui.icon.header .content {
  231. display: block;
  232. }
  233. .ui.icon.header .circular.icon {
  234. font-size: 2em;
  235. }
  236. .ui.icon.header .square.icon {
  237. font-size: 2em;
  238. }
  239. .ui.block.icon.header .icon {
  240. margin-bottom: 0em;
  241. }
  242. .ui.icon.header.aligned {
  243. margin-left: auto;
  244. margin-right: auto;
  245. display: block;
  246. }
  247. /*******************************
  248. States
  249. *******************************/
  250. .ui.disabled.header {
  251. opacity: 0.45;
  252. }
  253. /*******************************
  254. Variations
  255. *******************************/
  256. /*-------------------
  257. Inverted
  258. --------------------*/
  259. .ui.inverted.header {
  260. color: #ffffff;
  261. }
  262. .ui.inverted.header .sub.header {
  263. color: rgba(255, 255, 255, 0.8);
  264. }
  265. .ui.inverted.attached.header {
  266. background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  267. background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  268. box-shadow: none;
  269. border-color: transparent;
  270. }
  271. .ui.inverted.block.header {
  272. background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  273. background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  274. box-shadow: none;
  275. }
  276. .ui.inverted.block.header {
  277. border-bottom: none;
  278. }
  279. /*-------------------
  280. Colors
  281. --------------------*/
  282. /*--- Red ---*/
  283. .ui.red.header {
  284. color: #db2828 !important;
  285. }
  286. a.ui.red.header:hover {
  287. color: #d41616 !important;
  288. }
  289. .ui.red.dividing.header {
  290. border-bottom: 2px solid #db2828;
  291. }
  292. /* Inverted */
  293. .ui.inverted.red.header {
  294. color: #ff695e !important;
  295. }
  296. a.ui.inverted.red.header:hover {
  297. color: #ff5144 !important;
  298. }
  299. /*--- Orange ---*/
  300. .ui.orange.header {
  301. color: #f2711c !important;
  302. }
  303. a.ui.orange.header:hover {
  304. color: #f36101 !important;
  305. }
  306. .ui.orange.dividing.header {
  307. border-bottom: 2px solid #f2711c;
  308. }
  309. /* Inverted */
  310. .ui.inverted.orange.header {
  311. color: #ff851b !important;
  312. }
  313. a.ui.inverted.orange.header:hover {
  314. color: #ff7701 !important;
  315. }
  316. /*--- Olive ---*/
  317. .ui.olive.header {
  318. color: #b5cc18 !important;
  319. }
  320. a.ui.olive.header:hover {
  321. color: #a8bf0b !important;
  322. }
  323. .ui.olive.dividing.header {
  324. border-bottom: 2px solid #b5cc18;
  325. }
  326. /* Inverted */
  327. .ui.inverted.olive.header {
  328. color: #d9e778 !important;
  329. }
  330. a.ui.inverted.olive.header:hover {
  331. color: #daec59 !important;
  332. }
  333. /*--- Yellow ---*/
  334. .ui.yellow.header {
  335. color: #fbbd08 !important;
  336. }
  337. a.ui.yellow.header:hover {
  338. color: #eaae00 !important;
  339. }
  340. .ui.yellow.dividing.header {
  341. border-bottom: 2px solid #fbbd08;
  342. }
  343. /* Inverted */
  344. .ui.inverted.yellow.header {
  345. color: #ffe21f !important;
  346. }
  347. a.ui.inverted.yellow.header:hover {
  348. color: #ffdf05 !important;
  349. }
  350. /*--- Green ---*/
  351. .ui.green.header {
  352. color: #21ba45 !important;
  353. }
  354. a.ui.green.header:hover {
  355. color: #13ae38 !important;
  356. }
  357. .ui.green.dividing.header {
  358. border-bottom: 2px solid #21ba45;
  359. }
  360. /* Inverted */
  361. .ui.inverted.green.header {
  362. color: #2ecc40 !important;
  363. }
  364. a.ui.inverted.green.header:hover {
  365. color: #1ec231 !important;
  366. }
  367. /*--- Teal ---*/
  368. .ui.teal.header {
  369. color: #00b5ad !important;
  370. }
  371. a.ui.teal.header:hover {
  372. color: #009c95 !important;
  373. }
  374. .ui.teal.dividing.header {
  375. border-bottom: 2px solid #00b5ad;
  376. }
  377. /* Inverted */
  378. .ui.inverted.teal.header {
  379. color: #6dffff !important;
  380. }
  381. a.ui.inverted.teal.header:hover {
  382. color: #54ffff !important;
  383. }
  384. /*--- Blue ---*/
  385. .ui.blue.header {
  386. color: #2185d0 !important;
  387. }
  388. a.ui.blue.header:hover {
  389. color: #1378c5 !important;
  390. }
  391. .ui.blue.dividing.header {
  392. border-bottom: 2px solid #2185d0;
  393. }
  394. /* Inverted */
  395. .ui.inverted.blue.header {
  396. color: #54c8ff !important;
  397. }
  398. a.ui.inverted.blue.header:hover {
  399. color: #3ac0ff !important;
  400. }
  401. /*--- Violet ---*/
  402. .ui.violet.header {
  403. color: #6435c9 !important;
  404. }
  405. a.ui.violet.header:hover {
  406. color: #5624c0 !important;
  407. }
  408. .ui.violet.dividing.header {
  409. border-bottom: 2px solid #6435c9;
  410. }
  411. /* Inverted */
  412. .ui.inverted.violet.header {
  413. color: #a291fb !important;
  414. }
  415. a.ui.inverted.violet.header:hover {
  416. color: #8a73ff !important;
  417. }
  418. /*--- Purple ---*/
  419. .ui.purple.header {
  420. color: #a333c8 !important;
  421. }
  422. a.ui.purple.header:hover {
  423. color: #9823bf !important;
  424. }
  425. .ui.purple.dividing.header {
  426. border-bottom: 2px solid #a333c8;
  427. }
  428. /* Inverted */
  429. .ui.inverted.purple.header {
  430. color: #dc73ff !important;
  431. }
  432. a.ui.inverted.purple.header:hover {
  433. color: #d65aff !important;
  434. }
  435. /*--- Pink ---*/
  436. .ui.pink.header {
  437. color: #e03997 !important;
  438. }
  439. a.ui.pink.header:hover {
  440. color: #e9168d !important;
  441. }
  442. .ui.pink.dividing.header {
  443. border-bottom: 2px solid #e03997;
  444. }
  445. /* Inverted */
  446. .ui.inverted.pink.header {
  447. color: #ff8edf !important;
  448. }
  449. a.ui.inverted.pink.header:hover {
  450. color: #ff74d8 !important;
  451. }
  452. /*--- Brown ---*/
  453. .ui.brown.header {
  454. color: #a5673f !important;
  455. }
  456. a.ui.brown.header:hover {
  457. color: #9d592e !important;
  458. }
  459. .ui.brown.dividing.header {
  460. border-bottom: 2px solid #a5673f;
  461. }
  462. /* Inverted */
  463. .ui.inverted.brown.header {
  464. color: #d67c1c !important;
  465. }
  466. a.ui.inverted.brown.header:hover {
  467. color: #ca6f0e !important;
  468. }
  469. /*--- Grey ---*/
  470. .ui.grey.header {
  471. color: #889090 !important;
  472. }
  473. a.ui.grey.header:hover {
  474. color: #959c9c !important;
  475. }
  476. .ui.grey.dividing.header {
  477. border-bottom: 2px solid #889090;
  478. }
  479. /* Inverted */
  480. .ui.inverted.grey.header {
  481. color: #dcddde !important;
  482. }
  483. a.ui.inverted.grey.header:hover {
  484. color: #cad0d6 !important;
  485. }
  486. /*-------------------
  487. Aligned
  488. --------------------*/
  489. .ui.left.aligned.header {
  490. text-align: left;
  491. }
  492. .ui.right.aligned.header {
  493. text-align: right;
  494. }
  495. .ui.centered.header,
  496. .ui.center.aligned.header {
  497. text-align: center;
  498. }
  499. .ui.justified.header {
  500. text-align: justify;
  501. }
  502. .ui.justified.header:after {
  503. display: inline-block;
  504. content: '';
  505. width: 100%;
  506. }
  507. /*-------------------
  508. Floated
  509. --------------------*/
  510. .ui.floated.header,
  511. .ui[class*="left floated"].header {
  512. float: left;
  513. margin-top: 0em;
  514. margin-right: 0.5em;
  515. }
  516. .ui[class*="right floated"].header {
  517. float: right;
  518. margin-top: 0em;
  519. margin-left: 0.5em;
  520. }
  521. /*-------------------
  522. Fittted
  523. --------------------*/
  524. .ui.fitted.header {
  525. padding: 0em;
  526. }
  527. /*-------------------
  528. Dividing
  529. --------------------*/
  530. .ui.dividing.header {
  531. padding-bottom: 0.25rem;
  532. border-bottom: 1px solid rgba(34, 36, 38, 0.15);
  533. }
  534. .ui.dividing.header .sub.header {
  535. padding-bottom: 0.25rem;
  536. }
  537. .ui.dividing.header .icon {
  538. margin-bottom: 0em;
  539. }
  540. .ui.inverted.dividing.header {
  541. border-bottom-color: rgba(255, 255, 255, 0.1);
  542. }
  543. /*-------------------
  544. Block
  545. --------------------*/
  546. .ui.block.header {
  547. background: #f4f4f4;
  548. padding: 0.75rem 1rem;
  549. box-shadow: none;
  550. border: 1px solid #d4d4d5;
  551. border-radius: 0.3125rem;
  552. }
  553. .ui.tiny.block.header {
  554. font-size: 1em;
  555. }
  556. .ui.small.block.header {
  557. font-size: 1.071em;
  558. }
  559. .ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
  560. font-size: 1.28em;
  561. }
  562. .ui.large.block.header {
  563. font-size: 1.714em;
  564. }
  565. .ui.huge.block.header {
  566. font-size: 2em;
  567. }
  568. /*-------------------
  569. Attached
  570. --------------------*/
  571. .ui.attached.header {
  572. background: #ffffff;
  573. padding: 0.75rem 1rem;
  574. margin-left: -1px;
  575. margin-right: -1px;
  576. box-shadow: none;
  577. border: 1px solid #d4d4d5;
  578. }
  579. .ui.attached.block.header {
  580. background: #f4f4f4;
  581. }
  582. .ui.attached:not(.top):not(.bottom).header {
  583. margin-top: 0em;
  584. margin-bottom: 0em;
  585. border-top: none;
  586. border-bottom: none;
  587. border-radius: 0em;
  588. }
  589. .ui.top.attached.header {
  590. margin-bottom: 0em;
  591. border-bottom: none;
  592. border-radius: 0.3125rem 0.3125rem 0em 0em;
  593. }
  594. .ui.bottom.attached.header {
  595. margin-top: 0em;
  596. border-top: none;
  597. border-radius: 0em 0em 0.3125rem 0.3125rem;
  598. }
  599. /* Attached Sizes */
  600. .ui.tiny.attached.header {
  601. font-size: 0.85714286em;
  602. }
  603. .ui.small.attached.header {
  604. font-size: 0.92857143em;
  605. }
  606. .ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
  607. font-size: 1em;
  608. }
  609. .ui.large.attached.header {
  610. font-size: 1.14285714em;
  611. }
  612. .ui.huge.attached.header {
  613. font-size: 1.42857143em;
  614. }
  615. /*-------------------
  616. Sizing
  617. --------------------*/
  618. .ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
  619. font-size: 1.28em;
  620. }
  621. /*******************************
  622. Theme Overrides
  623. *******************************/
  624. /*******************************
  625. Site Overrides
  626. *******************************/