main.css 27 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012
  1. /*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
  2. /* Document
  3. ========================================================================== */
  4. /**
  5. * 1. Correct the line height in all browsers.
  6. * 2. Prevent adjustments of font size after orientation changes in iOS.
  7. */
  8. html {
  9. line-height: 1.15; /* 1 */
  10. -webkit-text-size-adjust: 100%; /* 2 */
  11. }
  12. /* Sections
  13. ========================================================================== */
  14. /**
  15. * Remove the margin in all browsers.
  16. */
  17. body {
  18. margin: 0;
  19. }
  20. /**
  21. * Correct the font size and margin on `h1` elements within `section` and
  22. * `article` contexts in Chrome, Firefox, and Safari.
  23. */
  24. h1 {
  25. font-size: 2em;
  26. margin: 0.67em 0;
  27. }
  28. /* Grouping content
  29. ========================================================================== */
  30. /**
  31. * 1. Add the correct box sizing in Firefox.
  32. * 2. Show the overflow in Edge and IE.
  33. */
  34. hr {
  35. box-sizing: content-box; /* 1 */
  36. height: 0; /* 1 */
  37. overflow: visible; /* 2 */
  38. }
  39. /**
  40. * 1. Correct the inheritance and scaling of font size in all browsers.
  41. * 2. Correct the odd `em` font sizing in all browsers.
  42. */
  43. pre {
  44. font-family: monospace, monospace; /* 1 */
  45. font-size: 1em; /* 2 */
  46. }
  47. /* Text-level semantics
  48. ========================================================================== */
  49. /**
  50. * Remove the gray background on active links in IE 10.
  51. */
  52. a {
  53. background-color: transparent;
  54. }
  55. /**
  56. * 1. Remove the bottom border in Chrome 57-
  57. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  58. */
  59. abbr[title] {
  60. border-bottom: none; /* 1 */
  61. text-decoration: underline; /* 2 */
  62. text-decoration: underline dotted; /* 2 */
  63. }
  64. /**
  65. * Add the correct font weight in Chrome, Edge, and Safari.
  66. */
  67. b,
  68. strong {
  69. font-weight: bolder;
  70. }
  71. /**
  72. * 1. Correct the inheritance and scaling of font size in all browsers.
  73. * 2. Correct the odd `em` font sizing in all browsers.
  74. */
  75. code,
  76. kbd,
  77. samp {
  78. font-family: monospace, monospace; /* 1 */
  79. font-size: 1em; /* 2 */
  80. }
  81. /**
  82. * Add the correct font size in all browsers.
  83. */
  84. small {
  85. font-size: 80%;
  86. }
  87. /**
  88. * Prevent `sub` and `sup` elements from affecting the line height in
  89. * all browsers.
  90. */
  91. sub,
  92. sup {
  93. font-size: 75%;
  94. line-height: 0;
  95. position: relative;
  96. vertical-align: baseline;
  97. }
  98. sub {
  99. bottom: -0.25em;
  100. }
  101. sup {
  102. top: -0.5em;
  103. }
  104. /* Embedded content
  105. ========================================================================== */
  106. /**
  107. * Remove the border on images inside links in IE 10.
  108. */
  109. img {
  110. border-style: none;
  111. }
  112. /* Forms
  113. ========================================================================== */
  114. /**
  115. * 1. Change the font styles in all browsers.
  116. * 2. Remove the margin in Firefox and Safari.
  117. */
  118. button,
  119. input,
  120. optgroup,
  121. select,
  122. textarea {
  123. font-family: inherit; /* 1 */
  124. font-size: 100%; /* 1 */
  125. line-height: 1.15; /* 1 */
  126. margin: 0; /* 2 */
  127. }
  128. /**
  129. * Show the overflow in IE.
  130. * 1. Show the overflow in Edge.
  131. */
  132. button,
  133. input { /* 1 */
  134. overflow: visible;
  135. }
  136. /**
  137. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  138. * 1. Remove the inheritance of text transform in Firefox.
  139. */
  140. button,
  141. select { /* 1 */
  142. text-transform: none;
  143. }
  144. /**
  145. * Correct the inability to style clickable types in iOS and Safari.
  146. */
  147. button,
  148. [type="button"],
  149. [type="reset"],
  150. [type="submit"] {
  151. -webkit-appearance: button;
  152. }
  153. /**
  154. * Remove the inner border and padding in Firefox.
  155. */
  156. button::-moz-focus-inner,
  157. [type="button"]::-moz-focus-inner,
  158. [type="reset"]::-moz-focus-inner,
  159. [type="submit"]::-moz-focus-inner {
  160. border-style: none;
  161. padding: 0;
  162. }
  163. /**
  164. * Restore the focus styles unset by the previous rule.
  165. */
  166. button:-moz-focusring,
  167. [type="button"]:-moz-focusring,
  168. [type="reset"]:-moz-focusring,
  169. [type="submit"]:-moz-focusring {
  170. outline: 1px dotted ButtonText;
  171. }
  172. /**
  173. * Correct the padding in Firefox.
  174. */
  175. fieldset {
  176. padding: 0.35em 0.75em 0.625em;
  177. }
  178. /**
  179. * 1. Correct the text wrapping in Edge and IE.
  180. * 2. Correct the color inheritance from `fieldset` elements in IE.
  181. * 3. Remove the padding so developers are not caught out when they zero out
  182. * `fieldset` elements in all browsers.
  183. */
  184. legend {
  185. box-sizing: border-box; /* 1 */
  186. color: inherit; /* 2 */
  187. display: table; /* 1 */
  188. max-width: 100%; /* 1 */
  189. padding: 0; /* 3 */
  190. white-space: normal; /* 1 */
  191. }
  192. /**
  193. * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  194. */
  195. progress {
  196. vertical-align: baseline;
  197. }
  198. /**
  199. * Remove the default vertical scrollbar in IE 10+.
  200. */
  201. textarea {
  202. overflow: auto;
  203. }
  204. /**
  205. * 1. Add the correct box sizing in IE 10.
  206. * 2. Remove the padding in IE 10.
  207. */
  208. [type="checkbox"],
  209. [type="radio"] {
  210. box-sizing: border-box; /* 1 */
  211. padding: 0; /* 2 */
  212. }
  213. /**
  214. * Correct the cursor style of increment and decrement buttons in Chrome.
  215. */
  216. [type="number"]::-webkit-inner-spin-button,
  217. [type="number"]::-webkit-outer-spin-button {
  218. height: auto;
  219. }
  220. /**
  221. * 1. Correct the odd appearance in Chrome and Safari.
  222. * 2. Correct the outline style in Safari.
  223. */
  224. [type="search"] {
  225. -webkit-appearance: textfield; /* 1 */
  226. outline-offset: -2px; /* 2 */
  227. }
  228. /**
  229. * Remove the inner padding in Chrome and Safari on macOS.
  230. */
  231. [type="search"]::-webkit-search-decoration {
  232. -webkit-appearance: none;
  233. }
  234. /**
  235. * 1. Correct the inability to style clickable types in iOS and Safari.
  236. * 2. Change font properties to `inherit` in Safari.
  237. */
  238. ::-webkit-file-upload-button {
  239. -webkit-appearance: button; /* 1 */
  240. font: inherit; /* 2 */
  241. }
  242. /* Interactive
  243. ========================================================================== */
  244. /*
  245. * Add the correct display in Edge, IE 10+, and Firefox.
  246. */
  247. details {
  248. display: block;
  249. }
  250. /*
  251. * Add the correct display in all browsers.
  252. */
  253. summary {
  254. display: list-item;
  255. }
  256. /* Misc
  257. ========================================================================== */
  258. /**
  259. * Add the correct display in IE 10+.
  260. */
  261. template {
  262. display: none;
  263. }
  264. /**
  265. * Add the correct display in IE 10.
  266. */
  267. [hidden] {
  268. display: none;
  269. }
  270. /* Generated by Font Squirrel (http://www.fontsquirrel.com) on September 30, 2015 */
  271. @font-face {
  272. font-family: 'amiri';
  273. src: url(fonts/amiri-bold-webfont.eot);
  274. src: url(fonts/amiri-bold-webfont.eot?#iefix) format('embedded-opentype'),
  275. url(fonts/amiri-bold-webfont.woff2) format('woff2'),
  276. url(fonts/amiri-bold-webfont.woff) format('woff'),
  277. url(fonts/amiri-bold-webfont.ttf) format('truetype'),
  278. url(fonts/amiri-bold-webfont.svg#amiribold) format('svg');
  279. font-weight: 700;
  280. font-style: normal;
  281. }
  282. @font-face {
  283. font-family: 'amiri';
  284. src: url(fonts/amiri-boldslanted-webfont.eot);
  285. src: url(fonts/amiri-boldslanted-webfont.eot?#iefix) format('embedded-opentype'),
  286. url(fonts/amiri-boldslanted-webfont.woff2) format('woff2'),
  287. url(fonts/amiri-boldslanted-webfont.woff) format('woff'),
  288. url(fonts/amiri-boldslanted-webfont.ttf) format('truetype'),
  289. url(fonts/amiri-boldslanted-webfont.svg#amiribold_slanted) format('svg');
  290. font-weight: 700;
  291. font-style: italic;
  292. }
  293. @font-face {
  294. font-family: 'amiri';
  295. src: url(fonts/amiri-regular-webfont.eot);
  296. src: url(fonts/amiri-regular-webfont.eot?#iefix) format('embedded-opentype'),
  297. url(fonts/amiri-regular-webfont.woff2) format('woff2'),
  298. url(fonts/amiri-regular-webfont.woff) format('woff'),
  299. url(fonts/amiri-regular-webfont.ttf) format('truetype'),
  300. url(fonts/amiri-regular-webfont.svg#amiriregular) format('svg');
  301. font-weight: normal;
  302. font-style: normal;
  303. }
  304. @font-face {
  305. font-family: 'amiri';
  306. src: url(fonts/amiri-slanted-webfont.eot);
  307. src: url(fonts/amiri-slanted-webfont.eot?#iefix) format('embedded-opentype'),
  308. url(fonts/amiri-slanted-webfont.woff2) format('woff2'),
  309. url(fonts/amiri-slanted-webfont.woff) format('woff'),
  310. url(fonts/amiri-slanted-webfont.ttf) format('truetype'),
  311. url(fonts/amiri-slanted-webfont.svg#amirislanted) format('svg');
  312. font-weight: normal;
  313. font-style: italic;
  314. }
  315. /* Generated by Font Squirrel (http://www.fontsquirrel.com) on April 28, 2010 12:00:36 PM America/New_York */
  316. /*================================*/
  317. /** MONO **/
  318. @font-face {
  319. font-family: 'DejaVuSansMono';
  320. src: url(fonts/DejaVuSansMono-webfont.eot);
  321. src: local('\263A'), url(fonts/DejaVuSansMono-webfont.woff) format('woff'), url(fonts/DejaVuSansMono-webfont.ttf) format('truetype'), url(fonts/DejaVuSansMono-webfont.svg) format('svg');
  322. font-weight: normal;
  323. font-style: normal;
  324. }
  325. @font-face {
  326. font-family: 'DejaVuSansMono';
  327. src: url(fonts/DejaVuSansMono-Oblique-webfont.eot);
  328. src: local('\263A'), url(fonts/DejaVuSansMono-Oblique-webfont.woff) format('woff'), url(fonts/DejaVuSansMono-Oblique-webfont.ttf) format('truetype'), url(fonts/DejaVuSansMono-Oblique-webfont.svg) format('svg');
  329. font-weight: normal;
  330. font-style: italic;
  331. }
  332. @font-face {
  333. font-family: 'DejaVuSansMono';
  334. src: url(fonts/DejaVuSansMono-Bold-webfont.eot);
  335. src: local('\263A'), url(fonts/DejaVuSansMono-Bold-webfont.woff) format('woff'), url(fonts/DejaVuSansMono-Bold-webfont.ttf) format('truetype'), url(fonts/DejaVuSansMono-Bold-webfont.svg) format('svg');
  336. font-weight: bold;
  337. font-style: normal;
  338. }
  339. @font-face {
  340. font-family: 'DejaVuSansMono';
  341. src: url(fonts/DejaVuSansMono-BoldOblique-webfont.eot);
  342. src: local('\263A'), url(fonts/DejaVuSansMono-BoldOblique-webfont.woff) format('woff'), url(fonts/DejaVuSansMono-BoldOblique-webfont.ttf) format('truetype'), url(fonts/DejaVuSansMono-BoldOblique-webfont.svg) format('svg');
  343. font-weight: bold;
  344. font-style: italic;
  345. }
  346. /*================================*/
  347. /** SANS **/
  348. /*Extra light*/
  349. @font-face {
  350. font-family: 'DejaVuSans';
  351. src: url(fonts/dejavusans-extralight-webfont.eot);
  352. src: local('\263A'), url(fonts/dejavusans-extralight-webfont.woff) format('woff'), url(fonts/dejavusans-extralight-webfont.ttf) format('truetype'), url(fonts/dejavusans-extralight-webfont.svg) format('svg');
  353. font-weight: 100;
  354. font-style: normal;
  355. }
  356. /*Normal*/
  357. @font-face {
  358. font-family: 'DejaVuSans';
  359. src: url(fonts/dejavusans-webfont.eot);
  360. src: local('\263A'), url(fonts/dejavusans-webfont.woff) format('woff'), url(fonts/dejavusans-webfont.ttf) format('truetype'), url(fonts/dejavusans-webfont.svg) format('svg');
  361. font-weight: normal;
  362. font-style: normal;
  363. }
  364. /*Bold*/
  365. @font-face {
  366. font-family: 'DejaVuSans';
  367. src: url(fonts/dejavusans-bold-webfont.eot);
  368. src: local('\263A'), url(fonts/dejavusans-bold-webfont.woff) format('woff'), url(fonts/dejavusans-bold-webfont.ttf) format('truetype'), url(fonts/dejavusans-bold-webfont.svg) format('svg');
  369. font-weight: bold;
  370. font-style: normal;
  371. }
  372. /*================================*/
  373. /** SERIF **/
  374. @font-face {
  375. font-family: 'DejaVuSerif';
  376. src: url(fonts/DejaVuSerif-webfont.eot);
  377. src: local('\263A'), url(fonts/DejaVuSerif-webfont.woff) format('woff'), url(fonts/DejaVuSerif-webfont.ttf) format('truetype'), url(fonts/DejaVuSerif-webfont.svg) format('svg');
  378. font-weight: normal;
  379. font-style: normal;
  380. }
  381. @font-face {
  382. font-family: 'DejaVuSerif';
  383. src: url(fonts/DejaVuSerif-Italic-webfont.eot);
  384. src: local('\263A'), url(fonts/DejaVuSerif-Italic-webfont.woff) format('woff'), url(fonts/DejaVuSerif-Italic-webfont.ttf) format('truetype'), url(fonts/DejaVuSerif-Italic-webfont.svg) format('svg');
  385. font-weight: normal;
  386. font-style: italic;
  387. }
  388. @font-face {
  389. font-family: 'DejaVuSerif';
  390. src: url(fonts/DejaVuSerif-Bold-webfont.eot);
  391. src: local('\263A'), url(fonts/DejaVuSerif-Bold-webfont.woff) format('woff'), url(fonts/DejaVuSerif-Bold-webfont.ttf) format('truetype'), url(fonts/DejaVuSerif-Bold-webfont.svg) format('svg');
  392. font-weight: bold;
  393. font-style: normal;
  394. }
  395. @font-face {
  396. font-family: 'DejaVuSerif';
  397. src: url(fonts/DejaVuSerif-BoldItalic-webfont.eot);
  398. src: local('\263A'), url(fonts/DejaVuSerif-BoldItalic-webfont.woff) format('woff'), url(fonts/DejaVuSerif-BoldItalic-webfont.ttf) format('truetype'), url(fonts/DejaVuSerif-BoldItalic-webfont.svg) format('svg');
  399. font-weight: bold;
  400. font-style: italic;
  401. }
  402. /*Condensed*/
  403. @font-face {
  404. font-family: 'DejaVuSerif-condensed';
  405. src: url(fonts/DejaVuSerifCondensed-webfont.eot);
  406. src: local('\263A'), url(fonts/DejaVuSerifCondensed-webfont.woff) format('woff'), url(fonts/DejaVuSerifCondensed-webfont.ttf) format('truetype'), url(fonts/DejaVuSerifCondensed-webfont.svg) format('svg');
  407. font-weight: normal;
  408. font-style: normal;
  409. }
  410. @font-face {
  411. font-family: 'DejaVuSerif-condensed';
  412. src: url(fonts/DejaVuSerifCondensed-Italic-webfont.eot);
  413. src: local('\263A'), url(fonts/DejaVuSerifCondensed-Italic-webfont.woff) format('woff'), url(fonts/DejaVuSerifCondensed-Italic-webfont.ttf) format('truetype'), url(fonts/DejaVuSerifCondensed-Italic-webfont.svg) format('svg');
  414. font-weight: normal;
  415. font-style: italic;
  416. }
  417. @font-face {
  418. font-family: 'DejaVuSerif-condensed';
  419. src: url(fonts/DejaVuSerifCondensed-Bold-webfont.eot);
  420. src: local('\263A'), url(fonts/DejaVuSerifCondensed-Bold-webfont.woff) format('woff'), url(fonts/DejaVuSerifCondensed-Bold-webfont.ttf) format('truetype'), url(fonts/DejaVuSerifCondensed-Bold-webfont.svg) format('svg');
  421. font-weight: bold;
  422. font-style: normal;
  423. }
  424. @font-face {
  425. font-family: 'DejaVuSerif-condensed';
  426. src: url(fonts/DejaVuSerifCondensed-BoldItalic-webfont.eot);
  427. src: local('\263A'), url(fonts/DejaVuSerifCondensed-BoldItalic-webfont.woff) format('woff'), url(fonts/DejaVuSerifCondensed-BoldItalic-webfont.ttf) format('truetype'), url(fonts/DejaVuSerifCondensed-BoldItalic-webfont.svg) format('svg');
  428. font-weight: bold;
  429. font-style: italic;
  430. }/* Generated by Font Squirrel (http://www.fontsquirrel.com) on November 15, 2011 05:31:35 AM America/New_York */
  431. @font-face {
  432. font-family: 'OpenSans';
  433. src: url(fonts/OpenSans-Light-webfont.eot);
  434. src: url(fonts/OpenSans-Light-webfont.eot?#iefix) format('embedded-opentype'),
  435. url(fonts/OpenSans-Light-webfont.woff) format('woff'),
  436. url(fonts/OpenSans-Light-webfont.ttf) format('truetype'),
  437. url(fonts/OpenSans-Light-webfont.svg#OpenSansLight) format('svg');
  438. font-weight: 200;
  439. font-style: normal;
  440. }
  441. @font-face {
  442. font-family: 'OpenSans';
  443. src: url(fonts/OpenSans-LightItalic-webfont.eot);
  444. src: url(fonts/OpenSans-LightItalic-webfont.eot?#iefix) format('embedded-opentype'),
  445. url(fonts/OpenSans-LightItalic-webfont.woff) format('woff'),
  446. url(fonts/OpenSans-LightItalic-webfont.ttf) format('truetype'),
  447. url(fonts/OpenSans-LightItalic-webfont.svg#OpenSansLightItalic) format('svg');
  448. font-weight: 200;
  449. font-style: italic;
  450. }
  451. @font-face {
  452. font-family: 'OpenSans';
  453. src: url(fonts/OpenSans-Regular-webfont.eot);
  454. src: url(fonts/OpenSans-Regular-webfont.eot?#iefix) format('embedded-opentype'),
  455. url(fonts/OpenSans-Regular-webfont.woff) format('woff'),
  456. url(fonts/OpenSans-Regular-webfont.ttf) format('truetype'),
  457. url(fonts/OpenSans-Regular-webfont.svg#OpenSansRegular) format('svg');
  458. font-weight: normal;
  459. font-style: normal;
  460. }
  461. @font-face {
  462. font-family: 'OpenSans';
  463. src: url(fonts/OpenSans-Italic-webfont.eot);
  464. src: url(fonts/OpenSans-Italic-webfont.eot?#iefix) format('embedded-opentype'),
  465. url(fonts/OpenSans-Italic-webfont.woff) format('woff'),
  466. url(fonts/OpenSans-Italic-webfont.ttf) format('truetype'),
  467. url(fonts/OpenSans-Italic-webfont.svg#OpenSansItalic) format('svg');
  468. font-weight: normal;
  469. font-style: italic;
  470. }
  471. @font-face {
  472. font-family: 'OpenSans';
  473. src: url(fonts/OpenSans-Semibold-webfont.eot);
  474. src: url(fonts/OpenSans-Semibold-webfont.eot?#iefix) format('embedded-opentype'),
  475. url(fonts/OpenSans-Semibold-webfont.woff) format('woff'),
  476. url(fonts/OpenSans-Semibold-webfont.ttf) format('truetype'),
  477. url(fonts/OpenSans-Semibold-webfont.svg#OpenSansSemibold) format('svg');
  478. font-weight: 600;
  479. font-style: normal;
  480. }
  481. @font-face {
  482. font-family: 'OpenSans';
  483. src: url(fonts/OpenSans-SemiboldItalic-webfont.eot);
  484. src: url(fonts/OpenSans-SemiboldItalic-webfont.eot?#iefix) format('embedded-opentype'),
  485. url(fonts/OpenSans-SemiboldItalic-webfont.woff) format('woff'),
  486. url(fonts/OpenSans-SemiboldItalic-webfont.ttf) format('truetype'),
  487. url(fonts/OpenSans-SemiboldItalic-webfont.svg#OpenSansSemiboldItalic) format('svg');
  488. font-weight: 600;
  489. font-style: italic;
  490. }
  491. @font-face {
  492. font-family: 'OpenSans';
  493. src: url(fonts/OpenSans-Bold-webfont.eot);
  494. src: url(fonts/OpenSans-Bold-webfont.eot?#iefix) format('embedded-opentype'),
  495. url(fonts/OpenSans-Bold-webfont.woff) format('woff'),
  496. url(fonts/OpenSans-Bold-webfont.ttf) format('truetype'),
  497. url(fonts/OpenSans-Bold-webfont.svg#OpenSansBold) format('svg');
  498. font-weight: 700;
  499. font-style: normal;
  500. }
  501. @font-face {
  502. font-family: 'OpenSans';
  503. src: url(fonts/OpenSans-BoldItalic-webfont.eot);
  504. src: url(fonts/OpenSans-BoldItalic-webfont.eot?#iefix) format('embedded-opentype'),
  505. url(fonts/OpenSans-BoldItalic-webfont.woff) format('woff'),
  506. url(fonts/OpenSans-BoldItalic-webfont.ttf) format('truetype'),
  507. url(fonts/OpenSans-BoldItalic-webfont.svg#OpenSansBoldItalic) format('svg');
  508. font-weight: 700;
  509. font-style: italic;
  510. }
  511. @font-face {
  512. font-family: 'OpenSans';
  513. src: url(fonts/OpenSans-ExtraBold-webfont.eot);
  514. src: url(fonts/OpenSans-ExtraBold-webfont.eot?#iefix) format('embedded-opentype'),
  515. url(fonts/OpenSans-ExtraBold-webfont.woff) format('woff'),
  516. url(fonts/OpenSans-ExtraBold-webfont.ttf) format('truetype'),
  517. url(fonts/OpenSans-ExtraBold-webfont.svg#OpenSansExtrabold) format('svg');
  518. font-weight: 900;
  519. font-style: normal;
  520. }
  521. @font-face {
  522. font-family: 'OpenSans';
  523. src: url(fonts/OpenSans-ExtraBoldItalic-webfont.eot);
  524. src: url(fonts/OpenSans-ExtraBoldItalic-webfont.eot?#iefix) format('embedded-opentype'),
  525. url(fonts/OpenSans-ExtraBoldItalic-webfont.woff) format('woff'),
  526. url(fonts/OpenSans-ExtraBoldItalic-webfont.ttf) format('truetype'),
  527. url(fonts/OpenSans-ExtraBoldItalic-webfont.svg#OpenSansExtraboldItalic) format('svg');
  528. font-weight: 900;
  529. font-style: italic;
  530. }
  531. html, body {
  532. font-family: 'amiri', sans-serif;
  533. font-size: 16px;
  534. font-kerning: auto;
  535. line-height: 1.4;
  536. position: relative;
  537. margin: 0;
  538. padding: 0; }
  539. header {
  540. position: fixed;
  541. width: 100%;
  542. height: 5em;
  543. top: 0;
  544. z-index: 5;
  545. background-color: white; }
  546. header > * {
  547. display: inline-block;
  548. vertical-align: text-bottom; }
  549. header > *:last-child {
  550. margin-right: 1em; }
  551. header hgroup {
  552. margin: 0 4em 0 70px; }
  553. header hgroup h1, header hgroup h2 {
  554. margin: 0;
  555. padding: 0;
  556. line-height: 1; }
  557. header hgroup h1 {
  558. font-size: 3em; }
  559. header hgroup h2 {
  560. line-height: 1; }
  561. header #menus > * {
  562. display: inline-block;
  563. vertical-align: top; }
  564. header #menus nav {
  565. padding: 0 1em;
  566. position: relative; }
  567. header #menus nav h3 {
  568. margin: 0;
  569. padding: 0;
  570. line-height: 1;
  571. cursor: pointer;
  572. transition: color 0.3s ease-in-out; }
  573. header #menus nav ul {
  574. position: absolute;
  575. margin: 0;
  576. left: 0;
  577. padding: 0 1em 1em;
  578. background-color: white;
  579. white-space: nowrap;
  580. height: 1px;
  581. opacity: 0;
  582. overflow: hidden;
  583. transition: opacity 0.3s ease-in-out; }
  584. header #menus nav ul li {
  585. margin: 0;
  586. padding: 0;
  587. list-style: none;
  588. transition: color 0.3s ease-in-out;
  589. font-weight: 500;
  590. font-size: 1.2em;
  591. line-height: 1.2; }
  592. header #menus nav ul li a {
  593. color: inherit;
  594. text-decoration: none; }
  595. header #menus:hover h3 {
  596. color: #646464; }
  597. header #menus:hover nav:hover {
  598. z-index: 10; }
  599. header #menus:hover nav:hover h3 {
  600. color: #000; }
  601. header #menus:hover nav:hover ul {
  602. height: auto;
  603. opacity: 1;
  604. transition: height opacity 0.3s ease-in-out; }
  605. header #menus:hover nav:hover li {
  606. color: #646464; }
  607. header #menus:hover nav:hover li:hover {
  608. color: #000; }
  609. #db-loader {
  610. position: relative;
  611. width: 300px;
  612. height: 1px;
  613. background-color: black;
  614. margin-left: 70px; }
  615. #db-loader #db-loaded {
  616. position: absolute;
  617. top: -1px;
  618. left: 0;
  619. width: 0%;
  620. height: 3px;
  621. background-color: black;
  622. transition: width 1.2s; }
  623. .sticky-clone-wrapper {
  624. padding-top: 5em;
  625. position: fixed;
  626. top: 0;
  627. left: 0;
  628. z-index: 4;
  629. width: 100%;
  630. background-color: white; }
  631. .sticky-clone-wrapper h1.part-title {
  632. margin: 0 0 0 70px; }
  633. main#content {
  634. margin-top: 5em; }
  635. main#content section.part {
  636. position: relative;
  637. margin-bottom: 2em; }
  638. section.intro {
  639. margin-left: 70px; }
  640. h1.part-title {
  641. font-size: 1.8em;
  642. margin: 0 0 0 70px;
  643. padding-bottom: 0.5em;
  644. font-weight: normal;
  645. letter-spacing: 0.3em; }
  646. h1.part-title em {
  647. font-size: 0.7em;
  648. letter-spacing: normal; }
  649. h2.title {
  650. font-size: 1.2em;
  651. font-weight: 500;
  652. margin: 1em 0 0 70px;
  653. line-height: 1; }
  654. h4.filet {
  655. margin: 0.5em 0 0 70px; }
  656. div.proposition:not(.chapitre), div.proposition.chapitre:first-of-type, div.proposition:not(.dot.nested),
  657. div.appendice:not(.chapitre),
  658. div.appendice.chapitre:first-of-type,
  659. div.appendice:not(.dot.nested),
  660. div.chapitre:not(.chapitre),
  661. div.chapitre.chapitre:first-of-type,
  662. div.chapitre:not(.dot.nested) {
  663. margin-top: 1em; }
  664. div.proposition span.title,
  665. div.appendice span.title,
  666. div.chapitre span.title {
  667. font-size: 1.2em;
  668. font-weight: 500; }
  669. div.explication span.title,
  670. div.demonstration span.title,
  671. div.scolie span.title,
  672. div.corollaire span.title,
  673. div.prop-axiom span.title,
  674. div.lemme span.title {
  675. font-size: 0.8em;
  676. text-transform: capitalize;
  677. font-variant: small-caps; }
  678. div.lemme-scolie span.title,
  679. div.lemme-corrollaire span.title,
  680. div.lemme-demonstration span.title,
  681. div.corollaire-demo span.title {
  682. font-size: 0.7em;
  683. text-transform: capitalize;
  684. font-variant: small-caps; }
  685. main#content.mode-text section.enonce, main#content.mode-text section.item.nested {
  686. width: 600px;
  687. margin: 1em 0 1em 70px;
  688. overflow-x: visible; }
  689. main#content.mode-text section.enonce {
  690. font-family: 'amiri', sans-serif;
  691. font-size: 16px;
  692. font-kerning: auto;
  693. line-height: 1.4; }
  694. main#content.mode-text section.enonce h2 {
  695. font-size: 1em;
  696. font-weight: 300;
  697. margin: 0;
  698. cursor: pointer; }
  699. main#content.mode-text section.enonce.definition:not(.nested) > h2, main#content.mode-text section.enonce.axiom:not(.nested) > h2, main#content.mode-text section.enonce.def-affect:not(.nested) > h2 {
  700. font-size: 1.2em;
  701. float: left;
  702. margin: 0 0.5em 0 0;
  703. font-weight: 600;
  704. text-transform: uppercase; }
  705. main#content.mode-text section.enonce h3 {
  706. font-size: 0.9em;
  707. font-weight: 300;
  708. margin: 0;
  709. cursor: pointer; }
  710. main#content.mode-text section.enonce.proposition > div.text {
  711. font-size: 1.5em;
  712. font-weight: 500; }
  713. main#content.mode-text section.enonce div.text {
  714. font-size: 1.2em; }
  715. main#content.mode-text section.enonce div.text div.paragraph {
  716. margin-bottom: 1em; }
  717. main#content.mode-text section.enonce div.text div.paragraph div.opened-link {
  718. display: inline; }
  719. main#content.mode-text section.enonce div.text div.paragraph a.link, main#content.mode-text section.enonce div.text div.paragraph span.link.text {
  720. font-weight: 600;
  721. text-decoration: none;
  722. color: inherit; }
  723. main#content.mode-text section.enonce div.text div.paragraph span.link.text:after {
  724. content: ':'; }
  725. main#content.mode-text section.enonce div.text div.paragraph section.enonce, main#content.mode-text section.enonce div.text div.paragraph section.item {
  726. padding-left: 2em;
  727. border-left: 1px solid #999; }
  728. main#content.mode-text section.enonce div.text div.paragraph img {
  729. float: left; }
  730. main#content.mode-text section.enonce div.text div.paragraph sup {
  731. font-size: 55%;
  732. font-weight: 400; }
  733. main#content.mode-text section.enonce div.text div.paragraph sup a {
  734. pointer-events: none;
  735. cursor: pointer; }
  736. main#content.mode-text section.enonce hr {
  737. display: none; }
  738. main#content.mode-text section.enonce section ol {
  739. font-size: 0.7em;
  740. margin: -1em 0 2em 0;
  741. padding: 0 0 0 1em; }
  742. main#content.mode-text section.enonce section ol a {
  743. display: none; }
  744. main#content.mode-text .enonce.nested, main#content.mode-text .item.nested {
  745. font-size: 16px;
  746. font-style: normal; }
  747. main#content.mode-text .opened-link .close-link-btn {
  748. width: 20px;
  749. height: 20px;
  750. margin: 1em 0 -2.1em 61px;
  751. position: relative;
  752. background-color: white;
  753. z-index: 10;
  754. cursor: pointer;
  755. text-align: center; }
  756. main#content.mode-text .opened-link .close-link-btn:before {
  757. content: "\1F7AC";
  758. font-style: normal;
  759. font-size: 0.7em;
  760. font-weight: 300; }
  761. .dot {
  762. margin: 0 0 0 70px;
  763. position: relative;
  764. border: 1px solid white;
  765. width: 550px; }
  766. .dot > span.title {
  767. padding: 0 0.6em 0 0; }
  768. .dot.opened > span.title {
  769. display: block; }
  770. .dot > p.summary {
  771. display: inline-block;
  772. vertical-align: top;
  773. margin: 0;
  774. opacity: 0;
  775. transition: opacity 0.4s ease-in-out;
  776. max-width: 475px; }
  777. .dot.preface .title {
  778. display: none; }
  779. .dot.preface p.summary {
  780. opacity: 1; }
  781. .dot:not(.disabled) > span.title, .dot:not(.disabled) > p.summary {
  782. cursor: pointer; }
  783. .dot.disabled > span.title, .dot.disabled > p.summary {
  784. cursor: default; }
  785. .dot > section.text {
  786. display: inline-block;
  787. vertical-align: top;
  788. margin: 0;
  789. width: 435px; }
  790. .dot > section.text p {
  791. margin: 0; }
  792. .dot > section.text p:not(:last-child) {
  793. margin-bottom: 1em; }
  794. .dot > section.text a {
  795. color: inherit;
  796. text-decoration: none;
  797. font-weight: bold; }
  798. .dot.to-links > section.text {
  799. border-top: 1px solid #e2e2e2;
  800. padding-top: 1.5em;
  801. margin-top: -1.4em; }
  802. .dot.from-links > section.text {
  803. border-bottom: 1px solid #e2e2e2; }
  804. .dot > nav.links {
  805. position: relative;
  806. box-sizing: border-box; }
  807. .dot > nav.links.to {
  808. bottom: 100%;
  809. margin-top: 15px;
  810. padding-bottom: 10px;
  811. margin-top: 1em; }
  812. .dot > nav.links.to:before {
  813. content: "\2304";
  814. display: flex;
  815. align-items: flex-end; }
  816. .dot > nav.links.from {
  817. top: 100%;
  818. padding-top: 10px;
  819. margin-bottom: 1em; }
  820. .dot > nav.links.from:before {
  821. content: "\2303"; }
  822. .dot > nav.links:before {
  823. border-left: 1px solid #e2e2e2;
  824. position: absolute;
  825. top: 0;
  826. left: 65px;
  827. height: 100%;
  828. width: 0;
  829. z-index: 3;
  830. text-indent: -0.45em;
  831. line-height: 1;
  832. color: #4a4848; }
  833. .dot:hover > p.summary, .dot.opened > p.summary, .dot.highlight > p.summary {
  834. opacity: 1;
  835. transition: opacity 0.4s ease-in-out; }
  836. .dot.disabled > * {
  837. color: grey; }
  838. .dot.opened {
  839. margin-bottom: 15px; }
  840. .dot .bullet, .dot .close-link-btn {
  841. position: absolute;
  842. width: 20px;
  843. left: -24px;
  844. margin: -3px 0 0 0;
  845. text-align: center; }
  846. .dot .bullet span {
  847. font-style: normal;
  848. font-size: 0.2em;
  849. font-weight: 300; }
  850. .dot .close-link-btn {
  851. cursor: pointer; }
  852. .dot .close-link-btn:before {
  853. content: "\1F7AC";
  854. font-style: normal;
  855. font-size: 0.7em;
  856. font-weight: 300; }
  857. .dot.nested {
  858. font-size: 16px; }
  859. footer {
  860. position: fixed;
  861. bottom: 0;
  862. background-color: white;
  863. width: 100%; }
  864. footer > * {
  865. margin-left: 70px; }
  866. /*# sourceMappingURL=main.css.map*/