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.

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