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.

622 lines
11 KiB

9 years ago
9 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
10 years ago
10 years ago
10 years ago
10 years ago
9 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
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
10 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 2014 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.8);
  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. margin: 0em;
  38. padding: 0em;
  39. font-size: 1.1428rem;
  40. line-height: 1.2em;
  41. color: rgba(0, 0, 0, 0.5);
  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.4285rem;
  129. }
  130. h2.ui.header .sub.header {
  131. font-size: 1.1428rem;
  132. }
  133. h3.ui.header .sub.header {
  134. font-size: 1.1428rem;
  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.4285rem;
  164. }
  165. .ui.large.header .sub.header {
  166. font-size: 1.4285rem;
  167. }
  168. .ui.header .sub.header {
  169. font-size: 1.1428rem;
  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. margin: 0em;
  182. padding: 0em;
  183. font-weight: bold;
  184. font-size: 0.85714286em;
  185. text-transform: uppercase;
  186. color: '';
  187. }
  188. .ui.small.sub.header {
  189. font-size: 0.71428571em;
  190. }
  191. .ui.sub.header {
  192. font-size: 0.85714286em;
  193. }
  194. .ui.large.sub.header {
  195. font-size: 0.92857143em;
  196. }
  197. .ui.huge.sub.header {
  198. font-size: 1em;
  199. }
  200. /*-------------------
  201. Icon
  202. --------------------*/
  203. .ui.icon.header {
  204. display: inline-block;
  205. text-align: center;
  206. margin: 2rem 0em 1rem;
  207. }
  208. .ui.icon.header:after {
  209. content: '';
  210. display: block;
  211. height: 0px;
  212. clear: both;
  213. visibility: hidden;
  214. }
  215. .ui.icon.header:first-child {
  216. margin-top: 0em;
  217. }
  218. .ui.icon.header .icon {
  219. float: none;
  220. display: block;
  221. width: auto;
  222. height: auto;
  223. padding: 0em;
  224. font-size: 3em;
  225. margin: 0em auto 0.25rem;
  226. opacity: 1;
  227. }
  228. .ui.icon.header .content {
  229. display: block;
  230. }
  231. .ui.icon.header .circular.icon {
  232. font-size: 2em;
  233. }
  234. .ui.icon.header .square.icon {
  235. font-size: 2em;
  236. }
  237. .ui.block.icon.header .icon {
  238. margin-bottom: 0em;
  239. }
  240. .ui.icon.header.aligned {
  241. margin-left: auto;
  242. margin-right: auto;
  243. display: block;
  244. }
  245. /*******************************
  246. States
  247. *******************************/
  248. .ui.disabled.header {
  249. opacity: 0.3;
  250. }
  251. /*******************************
  252. Variations
  253. *******************************/
  254. /*-------------------
  255. Colors
  256. --------------------*/
  257. .ui.black.header {
  258. color: #1b1c1d !important;
  259. }
  260. a.ui.black.header:hover {
  261. color: #23292e !important;
  262. }
  263. .ui.blue.header {
  264. color: #2185d0 !important;
  265. }
  266. a.ui.blue.header:hover {
  267. color: #1378c5 !important;
  268. }
  269. .ui.green.header {
  270. color: #21ba45 !important;
  271. }
  272. a.ui.green.header:hover {
  273. color: #13ae38 !important;
  274. }
  275. .ui.orange.header {
  276. color: #f2711c !important;
  277. }
  278. a.ui.orange.header:hover {
  279. color: #f36101 !important;
  280. }
  281. .ui.pink.header {
  282. color: #e03997 !important;
  283. }
  284. a.ui.pink.header:hover {
  285. color: #e9168d !important;
  286. }
  287. .ui.purple.header {
  288. color: #6a33c8 !important;
  289. }
  290. a.ui.purple.header:hover {
  291. color: #5c23bf !important;
  292. }
  293. .ui.red.header {
  294. color: #db2828 !important;
  295. }
  296. a.ui.red.header:hover {
  297. color: #d41616 !important;
  298. }
  299. .ui.teal.header {
  300. color: #00b5ad !important;
  301. }
  302. a.ui.teal.header:hover {
  303. color: #009c95 !important;
  304. }
  305. .ui.yellow.header {
  306. color: #fbbd08 !important;
  307. }
  308. a.ui.yellow.header:hover {
  309. color: #eaae00 !important;
  310. }
  311. .ui.black.dividing.header {
  312. border-bottom: 2px solid #1b1c1d;
  313. }
  314. .ui.blue.dividing.header {
  315. border-bottom: 2px solid #2185d0;
  316. }
  317. .ui.green.dividing.header {
  318. border-bottom: 2px solid #21ba45;
  319. }
  320. .ui.orange.dividing.header {
  321. border-bottom: 2px solid #f2711c;
  322. }
  323. .ui.pink.dividing.header {
  324. border-bottom: 2px solid #e03997;
  325. }
  326. .ui.purple.dividing.header {
  327. border-bottom: 2px solid #6a33c8;
  328. }
  329. .ui.red.dividing.header {
  330. border-bottom: 2px solid #db2828;
  331. }
  332. .ui.teal.dividing.header {
  333. border-bottom: 2px solid #00b5ad;
  334. }
  335. .ui.yellow.dividing.header {
  336. border-bottom: 2px solid #fbbd08;
  337. }
  338. /*-------------------
  339. Inverted
  340. --------------------*/
  341. .ui.inverted.header {
  342. color: #ffffff;
  343. }
  344. .ui.inverted.header .sub.header {
  345. color: rgba(255, 255, 255, 0.85);
  346. }
  347. .ui.inverted.attached.header {
  348. background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  349. background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  350. box-shadow: none;
  351. border-color: transparent;
  352. }
  353. .ui.inverted.block.header {
  354. background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  355. background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  356. box-shadow: none;
  357. }
  358. /*-------------------
  359. Inverted Colors
  360. --------------------*/
  361. .ui.inverted.black.header {
  362. color: #aaaaaa !important;
  363. }
  364. a.ui.inverted.black.header:hover {
  365. color: #beb0b0 !important;
  366. }
  367. .ui.inverted.blue.header {
  368. color: #54c8ff !important;
  369. }
  370. a.ui.inverted.blue.header:hover {
  371. color: #3ac0ff !important;
  372. }
  373. .ui.inverted.green.header {
  374. color: #2ecc40 !important;
  375. }
  376. a.ui.inverted.green.header:hover {
  377. color: #1ec231 !important;
  378. }
  379. .ui.inverted.orange.header {
  380. color: #ff851b !important;
  381. }
  382. a.ui.inverted.orange.header:hover {
  383. color: #ff7701 !important;
  384. }
  385. .ui.inverted.pink.header {
  386. color: #ff8edf !important;
  387. }
  388. a.ui.inverted.pink.header:hover {
  389. color: #ff74d8 !important;
  390. }
  391. .ui.inverted.purple.header {
  392. color: #cdc6ff !important;
  393. }
  394. a.ui.inverted.purple.header:hover {
  395. color: #b7acff !important;
  396. }
  397. .ui.inverted.red.header {
  398. color: #ff695e !important;
  399. }
  400. a.ui.inverted.red.header:hover {
  401. color: #ff5144 !important;
  402. }
  403. .ui.inverted.teal.header {
  404. color: #6dffff !important;
  405. }
  406. a.ui.inverted.teal.header:hover {
  407. color: #54ffff !important;
  408. }
  409. .ui.inverted.yellow.header {
  410. color: #ffe21f !important;
  411. }
  412. a.ui.inverted.yellow.header:hover {
  413. color: #ffdf05 !important;
  414. }
  415. .ui.inverted.block.header {
  416. border-bottom: none;
  417. }
  418. /*-------------------
  419. Aligned
  420. --------------------*/
  421. .ui.left.aligned.header {
  422. text-align: left;
  423. }
  424. .ui.right.aligned.header {
  425. text-align: right;
  426. }
  427. .ui.centered.header,
  428. .ui.center.aligned.header {
  429. text-align: center;
  430. }
  431. .ui.justified.header {
  432. text-align: justify;
  433. }
  434. .ui.justified.header:after {
  435. display: inline-block;
  436. content: '';
  437. width: 100%;
  438. }
  439. /*-------------------
  440. Floated
  441. --------------------*/
  442. .ui.floated.header,
  443. .ui[class*="left floated"].header {
  444. float: left;
  445. margin-top: 0em;
  446. margin-right: 0.5em;
  447. }
  448. .ui[class*="right floated"].header {
  449. float: right;
  450. margin-top: 0em;
  451. margin-left: 0.5em;
  452. }
  453. /*-------------------
  454. Fittted
  455. --------------------*/
  456. .ui.fitted.header {
  457. padding: 0em;
  458. }
  459. /*-------------------
  460. Dividing
  461. --------------------*/
  462. .ui.dividing.header {
  463. padding-bottom: 0.25rem;
  464. border-bottom: 1px solid rgba(34, 36, 38, 0.15);
  465. }
  466. .ui.dividing.header .sub.header {
  467. padding-bottom: 0.25rem;
  468. }
  469. .ui.dividing.header .icon {
  470. margin-bottom: 0em;
  471. }
  472. .ui.inverted.dividing.header {
  473. border-bottom-color: rgba(255, 255, 255, 0.1);
  474. }
  475. /*-------------------
  476. Block
  477. --------------------*/
  478. .ui.block.header {
  479. background: #f0f0f0;
  480. padding: 0.75rem 1rem;
  481. box-shadow: none;
  482. border: 1px solid #d4d4d5;
  483. border-radius: 0.3125rem;
  484. }
  485. .ui.tiny.block.header {
  486. font-size: 1em;
  487. }
  488. .ui.small.block.header {
  489. font-size: 1.071em;
  490. }
  491. .ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
  492. font-size: 1.28em;
  493. }
  494. .ui.large.block.header {
  495. font-size: 1.714em;
  496. }
  497. .ui.huge.block.header {
  498. font-size: 2em;
  499. }
  500. /*-------------------
  501. Attached
  502. --------------------*/
  503. .ui.attached.header {
  504. background: #ffffff;
  505. padding: 0.75rem 1rem;
  506. margin-left: -1px;
  507. margin-right: -1px;
  508. box-shadow: none;
  509. border: 1px solid #d4d4d5;
  510. }
  511. .ui.attached.block.header {
  512. background: #f0f0f0;
  513. }
  514. .ui.attached:not(.top):not(.bottom).header {
  515. margin-top: 0em;
  516. margin-bottom: 0em;
  517. border-top: none;
  518. border-bottom: none;
  519. border-radius: 0em;
  520. }
  521. .ui.top.attached.header {
  522. margin-bottom: 0em;
  523. border-bottom: none;
  524. border-radius: 0.3125rem 0.3125rem 0em 0em;
  525. }
  526. .ui.bottom.attached.header {
  527. margin-top: 0em;
  528. border-top: none;
  529. border-radius: 0em 0em 0.3125rem 0.3125rem;
  530. }
  531. /* Attached Sizes */
  532. .ui.tiny.attached.header {
  533. font-size: 0.8571em;
  534. }
  535. .ui.small.attached.header {
  536. font-size: 0.9285em;
  537. }
  538. .ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
  539. font-size: 1em;
  540. }
  541. .ui.large.attached.header {
  542. font-size: 1.0714em;
  543. }
  544. .ui.huge.attached.header {
  545. font-size: 1.1428em;
  546. }
  547. /*-------------------
  548. Sizing
  549. --------------------*/
  550. .ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
  551. font-size: 1.28em;
  552. }
  553. /*******************************
  554. Theme Overrides
  555. *******************************/
  556. /*******************************
  557. Site Overrides
  558. *******************************/