main.css 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040
  1. /*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */
  2. /*
  3. * What follows is the result of much research on cross-browser styling.
  4. * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
  5. * Kroc Camen, and the H5BP dev community and team.
  6. */
  7. /*
  8. * Sass Guide: http://sass-lang.com/guide
  9. */
  10. /* ==========================================================================
  11. Includes
  12. ========================================================================== */
  13. /*! normalize.css v1.1.3 | MIT License | git.io/normalize */
  14. /* ==========================================================================
  15. HTML5 display definitions
  16. ========================================================================== */
  17. /**
  18. * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
  19. */
  20. article,
  21. aside,
  22. details,
  23. figcaption,
  24. figure,
  25. footer,
  26. header,
  27. hgroup,
  28. main,
  29. nav,
  30. section,
  31. summary {
  32. display: block; }
  33. /**
  34. * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
  35. */
  36. audio,
  37. canvas,
  38. video {
  39. display: inline-block;
  40. *display: inline;
  41. *zoom: 1; }
  42. /**
  43. * Prevent modern browsers from displaying `audio` without controls.
  44. * Remove excess height in iOS 5 devices.
  45. */
  46. audio:not([controls]) {
  47. display: none;
  48. height: 0; }
  49. /**
  50. * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
  51. * Known issue: no IE 6 support.
  52. */
  53. [hidden] {
  54. display: none; }
  55. /* ==========================================================================
  56. Base
  57. ========================================================================== */
  58. /**
  59. * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
  60. * `em` units.
  61. * 2. Prevent iOS text size adjust after orientation change, without disabling
  62. * user zoom.
  63. */
  64. html {
  65. font-size: 100%;
  66. /* 1 */
  67. -ms-text-size-adjust: 100%;
  68. /* 2 */
  69. -webkit-text-size-adjust: 100%;
  70. /* 2 */ }
  71. /**
  72. * Address `font-family` inconsistency between `textarea` and other form
  73. * elements.
  74. */
  75. html,
  76. button,
  77. input,
  78. select,
  79. textarea {
  80. font-family: sans-serif; }
  81. /**
  82. * Address margins handled incorrectly in IE 6/7.
  83. */
  84. body {
  85. margin: 0; }
  86. /* ==========================================================================
  87. Links
  88. ========================================================================== */
  89. /**
  90. * Address `outline` inconsistency between Chrome and other browsers.
  91. */
  92. a:focus {
  93. outline: thin dotted; }
  94. /**
  95. * Improve readability when focused and also mouse hovered in all browsers.
  96. */
  97. a:active,
  98. a:hover {
  99. outline: 0; }
  100. /* ==========================================================================
  101. Typography
  102. ========================================================================== */
  103. /**
  104. * Address font sizes and margins set differently in IE 6/7.
  105. * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
  106. * and Chrome.
  107. */
  108. h1 {
  109. font-size: 2em;
  110. margin: 0.67em 0; }
  111. h2 {
  112. font-size: 1.5em;
  113. margin: 0.83em 0; }
  114. h3 {
  115. font-size: 1.17em;
  116. margin: 1em 0; }
  117. h4 {
  118. font-size: 1em;
  119. margin: 1.33em 0; }
  120. h5 {
  121. font-size: 0.83em;
  122. margin: 1.67em 0; }
  123. h6 {
  124. font-size: 0.67em;
  125. margin: 2.33em 0; }
  126. /**
  127. * Address styling not present in IE 7/8/9, Safari 5, and Chrome.
  128. */
  129. abbr[title] {
  130. border-bottom: 1px dotted; }
  131. /**
  132. * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
  133. */
  134. b,
  135. strong {
  136. font-weight: bold; }
  137. blockquote {
  138. margin: 1em 40px; }
  139. /**
  140. * Address styling not present in Safari 5 and Chrome.
  141. */
  142. dfn {
  143. font-style: italic; }
  144. /**
  145. * Address differences between Firefox and other browsers.
  146. * Known issue: no IE 6/7 normalization.
  147. */
  148. hr {
  149. -moz-box-sizing: content-box;
  150. box-sizing: content-box;
  151. height: 0; }
  152. /**
  153. * Address styling not present in IE 6/7/8/9.
  154. */
  155. mark {
  156. background: #ff0;
  157. color: #000; }
  158. /**
  159. * Address margins set differently in IE 6/7.
  160. */
  161. p,
  162. pre {
  163. margin: 1em 0; }
  164. /**
  165. * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
  166. */
  167. code,
  168. kbd,
  169. pre,
  170. samp {
  171. font-family: monospace, serif;
  172. _font-family: 'courier new', monospace;
  173. font-size: 1em; }
  174. /**
  175. * Improve readability of pre-formatted text in all browsers.
  176. */
  177. pre {
  178. white-space: pre;
  179. white-space: pre-wrap;
  180. word-wrap: break-word; }
  181. /**
  182. * Address CSS quotes not supported in IE 6/7.
  183. */
  184. q {
  185. quotes: none; }
  186. /**
  187. * Address `quotes` property not supported in Safari 4.
  188. */
  189. q:before,
  190. q:after {
  191. content: '';
  192. content: none; }
  193. /**
  194. * Address inconsistent and variable font size in all browsers.
  195. */
  196. small {
  197. font-size: 80%; }
  198. /**
  199. * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  200. */
  201. sub,
  202. sup {
  203. font-size: 75%;
  204. line-height: 0;
  205. position: relative;
  206. vertical-align: baseline; }
  207. sup {
  208. top: -0.5em; }
  209. sub {
  210. bottom: -0.25em; }
  211. /* ==========================================================================
  212. Lists
  213. ========================================================================== */
  214. /**
  215. * Address margins set differently in IE 6/7.
  216. */
  217. dl,
  218. menu,
  219. ol,
  220. ul {
  221. margin: 1em 0; }
  222. dd {
  223. margin: 0 0 0 40px; }
  224. /**
  225. * Address paddings set differently in IE 6/7.
  226. */
  227. menu,
  228. ol,
  229. ul {
  230. padding: 0 0 0 40px; }
  231. /**
  232. * Correct list images handled incorrectly in IE 7.
  233. */
  234. nav ul,
  235. nav ol {
  236. list-style: none;
  237. list-style-image: none; }
  238. /* ==========================================================================
  239. Embedded content
  240. ========================================================================== */
  241. /**
  242. * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
  243. * 2. Improve image quality when scaled in IE 7.
  244. */
  245. img {
  246. border: 0;
  247. /* 1 */
  248. -ms-interpolation-mode: bicubic;
  249. /* 2 */ }
  250. /**
  251. * Correct overflow displayed oddly in IE 9.
  252. */
  253. svg:not(:root) {
  254. overflow: hidden; }
  255. /* ==========================================================================
  256. Figures
  257. ========================================================================== */
  258. /**
  259. * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
  260. */
  261. figure {
  262. margin: 0; }
  263. /* ==========================================================================
  264. Forms
  265. ========================================================================== */
  266. /**
  267. * Correct margin displayed oddly in IE 6/7.
  268. */
  269. form {
  270. margin: 0; }
  271. /**
  272. * Define consistent border, margin, and padding.
  273. */
  274. fieldset {
  275. border: 1px solid #c0c0c0;
  276. margin: 0 2px;
  277. padding: 0.35em 0.625em 0.75em; }
  278. /**
  279. * 1. Correct color not being inherited in IE 6/7/8/9.
  280. * 2. Correct text not wrapping in Firefox 3.
  281. * 3. Correct alignment displayed oddly in IE 6/7.
  282. */
  283. legend {
  284. border: 0;
  285. /* 1 */
  286. padding: 0;
  287. white-space: normal;
  288. /* 2 */
  289. *margin-left: -7px;
  290. /* 3 */ }
  291. /**
  292. * 1. Correct font size not being inherited in all browsers.
  293. * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
  294. * and Chrome.
  295. * 3. Improve appearance and consistency in all browsers.
  296. */
  297. button,
  298. input,
  299. select,
  300. textarea {
  301. font-size: 100%;
  302. /* 1 */
  303. margin: 0;
  304. /* 2 */
  305. vertical-align: baseline;
  306. /* 3 */
  307. *vertical-align: middle;
  308. /* 3 */ }
  309. /**
  310. * Address Firefox 3+ setting `line-height` on `input` using `!important` in
  311. * the UA stylesheet.
  312. */
  313. button,
  314. input {
  315. line-height: normal; }
  316. /**
  317. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  318. * All other form control elements do not inherit `text-transform` values.
  319. * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
  320. * Correct `select` style inheritance in Firefox 4+ and Opera.
  321. */
  322. button,
  323. select {
  324. text-transform: none; }
  325. /**
  326. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  327. * and `video` controls.
  328. * 2. Correct inability to style clickable `input` types in iOS.
  329. * 3. Improve usability and consistency of cursor style between image-type
  330. * `input` and others.
  331. * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
  332. * Known issue: inner spacing remains in IE 6.
  333. */
  334. button,
  335. html input[type="button"],
  336. input[type="reset"],
  337. input[type="submit"] {
  338. -webkit-appearance: button;
  339. /* 2 */
  340. cursor: pointer;
  341. /* 3 */
  342. *overflow: visible;
  343. /* 4 */ }
  344. /**
  345. * Re-set default cursor for disabled elements.
  346. */
  347. button[disabled],
  348. html input[disabled] {
  349. cursor: default; }
  350. /**
  351. * 1. Address box sizing set to content-box in IE 8/9.
  352. * 2. Remove excess padding in IE 8/9.
  353. * 3. Remove excess padding in IE 7.
  354. * Known issue: excess padding remains in IE 6.
  355. */
  356. input[type="checkbox"],
  357. input[type="radio"] {
  358. box-sizing: border-box;
  359. /* 1 */
  360. padding: 0;
  361. /* 2 */
  362. *height: 13px;
  363. /* 3 */
  364. *width: 13px;
  365. /* 3 */ }
  366. /**
  367. * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
  368. * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
  369. * (include `-moz` to future-proof).
  370. */
  371. input[type="search"] {
  372. -webkit-appearance: textfield;
  373. /* 1 */
  374. -moz-box-sizing: content-box;
  375. -webkit-box-sizing: content-box;
  376. /* 2 */
  377. box-sizing: content-box; }
  378. /**
  379. * Remove inner padding and search cancel button in Safari 5 and Chrome
  380. * on OS X.
  381. */
  382. input[type="search"]::-webkit-search-cancel-button,
  383. input[type="search"]::-webkit-search-decoration {
  384. -webkit-appearance: none; }
  385. /**
  386. * Remove inner padding and border in Firefox 3+.
  387. */
  388. button::-moz-focus-inner,
  389. input::-moz-focus-inner {
  390. border: 0;
  391. padding: 0; }
  392. /**
  393. * 1. Remove default vertical scrollbar in IE 6/7/8/9.
  394. * 2. Improve readability and alignment in all browsers.
  395. */
  396. textarea {
  397. overflow: auto;
  398. /* 1 */
  399. vertical-align: top;
  400. /* 2 */ }
  401. /* ==========================================================================
  402. Tables
  403. ========================================================================== */
  404. /**
  405. * Remove most spacing between table cells.
  406. */
  407. table {
  408. border-collapse: collapse;
  409. border-spacing: 0; }
  410. /* ==========================================================================
  411. Variables
  412. by Sven Reifschneider
  413. ========================================================================== */
  414. /*
  415. * Colors
  416. */
  417. /*
  418. * Font
  419. */
  420. /* ==========================================================================
  421. Mixins
  422. by Sven Reifschneider
  423. Usage:
  424. @include mixin-name(wert);
  425. ========================================================================== */
  426. /* ==========================================================================
  427. Base styles: opinionated defaults
  428. ========================================================================== */
  429. html,
  430. button,
  431. input,
  432. select,
  433. textarea {
  434. color: #222; }
  435. html {
  436. font-size: 1em;
  437. line-height: 1.4;
  438. font-family: "Lato", Helvetica, Arial, sans-serif;
  439. text-align: center;
  440. -webkit-text-rendering: optimizeLegibility;
  441. -moz-text-rendering: optimizeLegibility;
  442. -ms-text-rendering: optimizeLegibility;
  443. -o-text-rendering: optimizeLegibility;
  444. text-rendering: optimizeLegibility;
  445. -webkit-font-smoothing: antialiased;
  446. -moz-font-smoothing: antialiased;
  447. -ms-font-smoothing: antialiased;
  448. -o-font-smoothing: antialiased;
  449. font-smoothing: antialiased;
  450. -webkit-box-sizing: border-box;
  451. -moz-box-sizing: border-box;
  452. box-sizing: border-box; }
  453. /*
  454. * Remove text-shadow in selection highlight: h5bp.com/i
  455. * These selection rule sets have to be separate.
  456. * Customize the background color to match your design.
  457. */
  458. ::-moz-selection {
  459. background: #b3d4fc;
  460. text-shadow: none; }
  461. ::selection {
  462. background: #b3d4fc;
  463. text-shadow: none; }
  464. /*
  465. * A better looking default horizontal rule
  466. */
  467. hr {
  468. display: block;
  469. height: 1px;
  470. border: 0;
  471. border-top: 1px solid #ccc;
  472. margin: 1em 0;
  473. padding: 0; }
  474. /*
  475. * Remove the gap between images, videos, audio and canvas and the bottom of
  476. * their containers: h5bp.com/i/440
  477. */
  478. audio,
  479. canvas,
  480. img,
  481. video {
  482. vertical-align: middle; }
  483. /*
  484. * Remove default fieldset styles.
  485. */
  486. fieldset {
  487. border: 0;
  488. margin: 0;
  489. padding: 0; }
  490. /*
  491. * Allow only vertical resizing of textareas.
  492. */
  493. textarea {
  494. resize: vertical; }
  495. /* ==========================================================================
  496. Website Style
  497. ========================================================================== */
  498. /* ==========================================================================
  499. Don't Repeat Yourself
  500. Elemente, die immer wieder auftauchen
  501. by Sven Reifschneider
  502. ========================================================================== */
  503. a, a:hover, a:active, a:visited {
  504. text-decoration: none; }
  505. /* ==========================================================================
  506. Website Style
  507. by Sven Reifschneider
  508. ========================================================================== */
  509. body {
  510. background: #f3f3f3; }
  511. body {
  512. text-align: center;
  513. width: 100%; }
  514. header {
  515. background: #05c2d8;
  516. width: 100%;
  517. color: #fff;
  518. font-weight: 300;
  519. padding: 1em 0 0 0; }
  520. header a {
  521. color: #d5f2f5;
  522. transition: all 0.2s; }
  523. header a:hover {
  524. color: #f4feff; }
  525. header h1 {
  526. font-size: 1.8em;
  527. font-weight: normal;
  528. margin: 0.1em 0em;
  529. padding: 0; }
  530. header h2 {
  531. font-size: 1.4em;
  532. font-weight: normal;
  533. margin: 0.1em 0;
  534. padding: 0; }
  535. header p {
  536. margin: 0.1em 0 0.2em 0;
  537. padding: 0; }
  538. header .h-left {
  539. display: inline-block;
  540. width: 48%;
  541. text-align: left; }
  542. header .h-right {
  543. display: inline-block;
  544. width: 48%;
  545. text-align: right; }
  546. header .h-right table {
  547. float: right;
  548. border: none; }
  549. header .h-right table td {
  550. padding: 0.1em 0.4em; }
  551. header nav {
  552. display: inline-block;
  553. text-align: left;
  554. width: 100%;
  555. font-size: 1.4em;
  556. font-weight: 400;
  557. margin: 2em 0 0 0; }
  558. header nav ul {
  559. list-style-type: none;
  560. margin: 0;
  561. padding: 0; }
  562. header nav li {
  563. display: inline-block;
  564. padding: 0.3em 0;
  565. margin: 0 0.4em; }
  566. header nav a {
  567. display: block; }
  568. header nav select {
  569. display: block;
  570. font-size: 0.8em;
  571. font-weight: 300;
  572. border: none;
  573. outline: none;
  574. -webkit-appearance: none;
  575. -moz-appearance: none;
  576. appearance: none;
  577. cursor: pointer;
  578. background: #05c2d8;
  579. color: #fff; }
  580. header nav a {
  581. color: #d5f2f5;
  582. transition: all 0.2s; }
  583. header nav a:hover {
  584. color: #f4feff; }
  585. header nav li.active {
  586. border-bottom: 3px solid #fff533; }
  587. header nav li.active a {
  588. color: #fff; }
  589. .container {
  590. display: inline-block;
  591. width: 1500px; }
  592. .container .left {
  593. display: inline-block;
  594. width: 590px;
  595. vertical-align: top;
  596. margin-right: 1.5em; }
  597. .container .right {
  598. display: inline-block;
  599. width: 860px; }
  600. .container-fix {
  601. display: inline-block;
  602. text-align: left;
  603. width: 980px; }
  604. .card {
  605. background: #fff;
  606. padding: 0.2em 1.5em 1em 1.5em;
  607. margin: 2em 0;
  608. box-sizing: border-box;
  609. width: 100%;
  610. text-align: left;
  611. -webkit-box-shadow: 0px 0px 6px 0px #c9c9c9;
  612. -moz-box-shadow: 0px 0px 6px 0px #c9c9c9;
  613. box-shadow: 0px 0px 6px 0px #c9c9c9; }
  614. .card img {
  615. max-width: 98%; }
  616. .card h1 {
  617. width: 100%;
  618. text-align: left;
  619. font-size: 1.5em;
  620. font-weight: normal;
  621. color: #515151;
  622. padding: 0;
  623. border-bottom: 1px solid #ebebeb; }
  624. .card h3 {
  625. margin: 0.4em 0;
  626. padding: 0;
  627. color: #515151; }
  628. .card table {
  629. border: none;
  630. width: 100%; }
  631. .card table td {
  632. margin: 0.2em;
  633. padding: 0.2em 0; }
  634. .card a {
  635. color: #6cc99f;
  636. transition: all 0.2s; }
  637. .card a:hover {
  638. color: #a4e5c8; }
  639. .cc {
  640. text-align: center; }
  641. .haelfte {
  642. width: 48%;
  643. display: inline-block; }
  644. footer {
  645. width: 100%;
  646. background: #05c2d8;
  647. color: #fff;
  648. padding: 1.5em 0; }
  649. footer a {
  650. color: #fff533;
  651. transition: all 0.2s; }
  652. footer a:hover {
  653. color: #fffcc2; }
  654. img.space {
  655. margin-top: 1.3em; }
  656. .graphs img {
  657. margin: 0.4em 0;
  658. max-width: 800px; }
  659. img.small {
  660. max-width: 550px; }
  661. .cpointer {
  662. cursor: pointer; }
  663. table.tablespacer td {
  664. padding: 0.3em 0; }
  665. table.tablespacer tr:not(:last-child) {
  666. border-bottom: 1px solid #ebebeb; }
  667. /*Gray*/
  668. .m-grau {
  669. color: #8a8a8a; }
  670. .m-orange {
  671. color: #f7cd35; }
  672. /*Green*/
  673. .m-gruen {
  674. color: #6cc99f; }
  675. /*Red*/
  676. .m-rot {
  677. color: #e6766b; }
  678. /*Blue*/
  679. .m-blau {
  680. color: #0ea5e6; }
  681. /* Hide the list item that contains the link that should open and close the topnav on small screens */
  682. ul.topnav li.icon {
  683. display: none;}
  684. @media (max-width: 1550px) and (min-width: 1210px) {
  685. .container {
  686. width: 1200px !important; }
  687. .container .left {
  688. width: 450px !important;
  689. margin-right: 0.8em !important; }
  690. .container .right {
  691. width: 700px !important; }
  692. .graphs img {
  693. margin: 0.3em 0 !important;
  694. max-width: 100% !important; }
  695. img.small {
  696. max-width: 100% !important; } }
  697. @media (max-width: 1209px) and (min-width: 1010px) {
  698. .container {
  699. width: 920px !important; }
  700. .container .left {
  701. width: 290px !important;
  702. margin-right: 0.8em !important; }
  703. .container .right {
  704. width: 580px !important; }
  705. .graphs img {
  706. margin: 0.3em 0 !important;
  707. max-width: 100% !important; }
  708. img.small {
  709. max-width: 100% !important; } }
  710. @media (max-width: 1009px) {
  711. .container {
  712. width: 100% !important; }
  713. .container .left {
  714. width: 100% !important;
  715. margin: 0 !important; }
  716. .container .right {
  717. width: 100% !important; }
  718. .container-fix {
  719. width: 100%; }
  720. .graphs img {
  721. margin: 0.2em 0 !important;
  722. max-width: 100% !important; }
  723. img.small {
  724. max-width: 100% !important; }
  725. .haelfte {
  726. width: 100% !important; }
  727. .card {
  728. margin: 1em 0; }
  729. header {
  730. width: 100%;
  731. box-sizing: border-box;
  732. padding: 0 1.5em; }
  733. header .h-left {
  734. display: inline-block;
  735. width: 100%; }
  736. header .h-right {
  737. display: none !important; }
  738. header nav {
  739. display: inline-block;
  740. width: 100%;
  741. font-size: 1.2em;
  742. margin: 0.5em 0 0 0; }
  743. header nav ul {
  744. list-style-type: none;
  745. margin: 0;
  746. padding: 0; }
  747. header nav li {
  748. display: block;
  749. padding: 0.1em 0;
  750. margin: 0; }
  751. header nav li.active {
  752. border-bottom: 3px solid #fff533; }
  753. header nav li.active a {
  754. color: #fff; }
  755. /* When the screen is less than 680 pixels wide, hide all list items. Show the list item that contains the link to open and close the topnav (li.icon) */
  756. ul.topnav li {
  757. display: none;
  758. }
  759. ul.topnav li.icon {
  760. float: left;
  761. display: inline-block;
  762. }
  763. ul.topnav li.active {
  764. border-bottom: 3px solid #fff533;
  765. }
  766. /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens */
  767. ul.topnav.responsive {
  768. position: relative;
  769. }
  770. ul.topnav.responsive li.icon {
  771. position: left;
  772. right: 0;
  773. top: 0;
  774. }
  775. ul.topnav.responsive li {
  776. float: none;
  777. display: inline;
  778. }
  779. ul.topnav.responsive li a {
  780. display: block;
  781. text-align: left;
  782. }
  783. ul.topnav.responsive li.active {
  784. display: block;
  785. border-bottom: 3px solid #fff533;
  786. }
  787. ul.topnav.responsive li.active a {
  788. display: block;
  789. color: #fff;
  790. }
  791. ///////////////////////////////
  792. }
  793. /* ==========================================================================
  794. Helper classes
  795. ========================================================================== */
  796. /*
  797. * Image replacement
  798. */
  799. .ir {
  800. background-color: transparent;
  801. border: 0;
  802. overflow: hidden;
  803. /* IE 6/7 fallback */
  804. *text-indent: -9999px; }
  805. .ir:before {
  806. content: "";
  807. display: block;
  808. width: 0;
  809. height: 150%; }
  810. /*
  811. * Hide from both screenreaders and browsers: h5bp.com/u
  812. */
  813. .hidden {
  814. display: none !important;
  815. visibility: hidden; }
  816. /*
  817. * Hide only visually, but have it available for screenreaders: h5bp.com/v
  818. */
  819. .visuallyhidden {
  820. border: 0;
  821. clip: rect(0 0 0 0);
  822. height: 1px;
  823. margin: -1px;
  824. overflow: hidden;
  825. padding: 0;
  826. position: absolute;
  827. width: 1px; }
  828. /*
  829. * Extends the .visuallyhidden class to allow the element to be focusable
  830. * when navigated to via the keyboard: h5bp.com/p
  831. */
  832. .visuallyhidden.focusable:active,
  833. .visuallyhidden.focusable:focus {
  834. clip: auto;
  835. height: auto;
  836. margin: 0;
  837. overflow: visible;
  838. position: static;
  839. width: auto; }
  840. /*
  841. * Hide visually and from screenreaders, but maintain layout
  842. */
  843. .invisible {
  844. visibility: hidden; }
  845. /*
  846. * Clearfix: contain floats
  847. *
  848. * For modern browsers
  849. * 1. The space content is one way to avoid an Opera bug when the
  850. * `contenteditable` attribute is included anywhere else in the document.
  851. * Otherwise it causes space to appear at the top and bottom of elements
  852. * that receive the `clearfix` class.
  853. * 2. The use of `table` rather than `block` is only necessary if using
  854. * `:before` to contain the top-margins of child elements.
  855. */
  856. .clearfix:before,
  857. .clearfix:after {
  858. content: " ";
  859. /* 1 */
  860. display: table;
  861. /* 2 */ }
  862. .clearfix:after {
  863. clear: both; }
  864. /*
  865. * For IE 6/7 only
  866. * Include this rule to trigger hasLayout and contain floats.
  867. */
  868. .clearfix {
  869. *zoom: 1; }
  870. /* ==========================================================================
  871. Media Queries
  872. ========================================================================== */
  873. @media only screen and (min-width: 35em) {
  874. /* Style adjustments for viewports that meet the condition */ }
  875. /* ==========================================================================
  876. Print styles.
  877. Inlined to avoid required HTTP connection: h5bp.com/r
  878. ========================================================================== */
  879. @media print {
  880. * {
  881. background: transparent !important;
  882. color: #000 !important;
  883. /* Black prints faster: h5bp.com/s */
  884. box-shadow: none !important;
  885. text-shadow: none !important; }
  886. a,
  887. a:visited {
  888. text-decoration: underline; }
  889. a[href]:after {
  890. content: " (" attr(href) ")"; }
  891. abbr[title]:after {
  892. content: " (" attr(title) ")"; }
  893. /*
  894. * Don't show links for images, or javascript/internal links
  895. */
  896. .ir a:after,
  897. a[href^="javascript:"]:after,
  898. a[href^="#"]:after {
  899. content: ""; }
  900. pre,
  901. blockquote {
  902. border: 1px solid #999;
  903. page-break-inside: avoid; }
  904. thead {
  905. display: table-header-group;
  906. /* h5bp.com/t */ }
  907. tr,
  908. img {
  909. page-break-inside: avoid; }
  910. img {
  911. max-width: 100% !important; }
  912. @page {
  913. margin: 0.5cm; }
  914. p,
  915. h2,
  916. h3 {
  917. orphans: 3;
  918. widows: 3; }
  919. h2,
  920. h3 {
  921. page-break-after: avoid; } }
  922. /*# sourceMappingURL=main.css.map */