main.css 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299
  1. /*
  2. Name: Smashing HTML5
  3. Date: July 2009
  4. Description: Sample layout for HTML5 and CSS3 goodness.
  5. Version: 1.0
  6. License: MIT <http://opensource.org/licenses/MIT>
  7. Licensed by: Smashing Media GmbH <http://www.smashingmagazine.com/>
  8. Original author: Enrique Ramírez <http://enrique-ramirez.com/>
  9. */
  10. /* Imports */
  11. @import url(reset.css);
  12. @import url(pygment.css);
  13. @import url('fonts.css');
  14. /***** Global *****/
  15. /* Body */
  16. body {
  17. background: #FFF;
  18. color: #000305;
  19. font-family: 'Lato', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  20. line-height: 1.429;
  21. margin: 0;
  22. padding: 0;
  23. text-align: left;
  24. }
  25. /* Headings */
  26. h1 {font-size: 2em }
  27. h2 {
  28. font-size: 2.5em;
  29. text-transform: uppercase;
  30. padding-top:90px;
  31. margin-bottom: .8em; /* 22px */
  32. }
  33. h2:first-child {margin-top:0;} /* 22px */
  34. h3 {font-size: 2em; color: #999; margin-top: 40px} /* 20px */
  35. h4 {font-size: 1.7em; margin-top: 30px;font-weight: 300;} /* 18px */
  36. h5 {font-size: 1.143em} /* 16px */
  37. h6 {font-size: 1em} /* 14px */
  38. h1, h2, h3, h4, h5, h6 {
  39. font-weight: 300;
  40. line-height: 1.1;
  41. font-family: 'Oswald', arial, serif;
  42. }
  43. hr { border: 2px solid #EEEEEE; }
  44. /* Anchors */
  45. a {outline: 0;}
  46. a img {border: 0px; text-decoration: none;}
  47. a:link, a:visited {
  48. color: #e0470b ;
  49. padding: 0 1px;
  50. text-decoration: underline;
  51. }
  52. a:hover, a:active {
  53. color: #F00;
  54. text-decoration: none;
  55. }
  56. h1 a:hover {
  57. background-color: inherit
  58. }
  59. /* Paragraphs */
  60. div.line-block,
  61. p { margin-top: 1em;
  62. margin-bottom: 1em;}
  63. strong, b {font-weight: bolder;}
  64. em, i {font-style: italic;}
  65. /* Lists */
  66. ul {
  67. list-style: outside disc;
  68. list-style-image: url(../images/puce.png);
  69. margin: 0em 0 0 1.5em;
  70. }
  71. ol {
  72. list-style: outside decimal;
  73. margin: 0em 0 0 1.5em;
  74. }
  75. li { margin-top: 0.5em;
  76. margin-bottom: 1em; }
  77. .post-info {
  78. float:right;
  79. margin:10px;
  80. padding:5px;
  81. }
  82. .post-info p{
  83. margin-top: 1px;
  84. margin-bottom: 1px;
  85. }
  86. .readmore { float: right }
  87. dl {margin: 0 0 1.5em 0;}
  88. dt {font-weight: bold;}
  89. dd {margin-left: 1.5em;}
  90. /* Quotes */
  91. blockquote {
  92. margin: 20px;
  93. font-style: italic;
  94. }
  95. cite {}
  96. q {}
  97. div.note {
  98. float: right;
  99. margin: 5px;
  100. font-size: 85%;
  101. max-width: 300px;
  102. }
  103. /* Tables */
  104. table {margin: .5em auto 1.5em auto; width: 98%;}
  105. /* Thead */
  106. thead th {padding: .5em .4em; text-align: left;}
  107. thead td {}
  108. /* Tbody */
  109. tbody td {padding: .5em .4em;}
  110. tbody th {}
  111. tbody .alt td {}
  112. tbody .alt th {}
  113. /* Tfoot */
  114. tfoot th {}
  115. tfoot td {}
  116. /* HTML5 tags */
  117. header, section, footer,
  118. aside, nav, article, figure {
  119. display: block;
  120. }
  121. /***** Layout *****/
  122. .body {
  123. clear: both;
  124. margin: 0 auto;
  125. width: 100%;
  126. }
  127. img.right, figure.right {float: right; margin: 0 0 2em 2em;}
  128. img.left, figure.left {float: left; margin: 0 2em 2em 0;}
  129. /*
  130. Global
  131. *****************/
  132. a.bouton {
  133. display: inline-block;
  134. padding: 20px;
  135. border: 3px solid #dc4807;
  136. text-decoration: none;
  137. font-size: 20px;
  138. margin-top: 60px;
  139. }
  140. /*
  141. Header
  142. *****************/
  143. #banner {
  144. border-bottom: 10px solid #e0470b;
  145. background: #000;
  146. }
  147. #headerContainer {
  148. width: 60%;
  149. margin: 0 auto 2em;
  150. padding: 30px 0;
  151. position: relative;
  152. height: 50px;
  153. font-size: 14px;
  154. }
  155. #banner #logo {
  156. display: inline-block;
  157. margin-right: 20px;
  158. position: absolute;
  159. }
  160. #banner #logo img {
  161. width: 230px;
  162. }
  163. /* Main Nav */
  164. #banner nav {
  165. display: inline-block;
  166. background: #000305;
  167. font-size: 1.2em;
  168. height: 40px;
  169. line-height: 30px;
  170. margin: 0 ;
  171. padding: 0;
  172. text-align: center;
  173. width: 750px;
  174. position: absolute;
  175. right: 0;
  176. top: 50%;
  177. }
  178. #banner nav ul {list-style: none; margin: 0 auto; width: 840px;}
  179. #banner nav li {float: left; display: inline; margin: 0 5px;}
  180. #banner nav a:link, #banner nav a:visited {
  181. color: #fff;
  182. display: inline-block;
  183. height: 30px;
  184. padding: 5px 1em;
  185. font-family: Lato;
  186. text-decoration: none;
  187. text-transform: lowercase;
  188. font-variant: small-caps;
  189. }
  190. /* #banner nav a:active, */
  191. #banner nav .active a:link, #banner nav .active a:visited {
  192. border: 1px solid #FFF;
  193. color: #fff;
  194. text-shadow: none !important;
  195. }
  196. #banner nav li a.icon {
  197. display: inline-block;
  198. background-repeat: no-repeat;
  199. background-position: center;
  200. background-size: 18px 18px;
  201. }
  202. #banner nav li a#twitter {
  203. background-image: url(../images/twitter.png);
  204. }
  205. #banner nav li a#rss {
  206. background-image: url(../images/rss.png);
  207. }
  208. /*
  209. Side navigation
  210. *****************/
  211. nav#side-nav {
  212. display: inline-block;
  213. width: 25%;
  214. vertical-align: top;
  215. text-align: right;
  216. padding-right: 60px;
  217. }
  218. nav#side-nav ul {
  219. position: relative;
  220. list-style: none;
  221. padding-right: 40px;
  222. }
  223. nav#side-nav ul:before {
  224. content: '';
  225. margin: 25px 0;
  226. position: absolute;
  227. z-index: -1;
  228. right: -1px;
  229. bottom: -1px;
  230. top: -1px;
  231. border: 1px solid #ccc;
  232. border-left-width: 0;
  233. }
  234. nav#side-nav ul li a {
  235. padding-right: 40px;
  236. margin-right: -47px;
  237. background-image: url(../images/puce-sideNav.png);
  238. background-repeat: no-repeat;
  239. background-position: right;
  240. height: 40px;
  241. display: inline-block;
  242. line-height: 40px;
  243. }
  244. nav#side-nav ul li a.active {
  245. background-image: url(../images/puce-sideNav-active.png);
  246. margin-right: -60px;
  247. padding-right: 55px;
  248. color: #333;
  249. font-weight: bolder;
  250. }
  251. nav#side-nav ul li a {
  252. font-size: 16px;
  253. color: #999;
  254. text-decoration: none;
  255. }
  256. /*
  257. Content
  258. *****************/
  259. div#content {
  260. display: inline-block;
  261. width: 60%;
  262. }
  263. /*
  264. Featured
  265. *****************/
  266. #featured {
  267. background: #fff;
  268. margin-bottom: 2em;
  269. overflow: hidden;
  270. padding: 20px;
  271. width: 760px;
  272. border-radius: 10px;
  273. -moz-border-radius: 10px;
  274. -webkit-border-radius: 10px;
  275. }
  276. #featured figure {
  277. border: 2px solid #eee;
  278. float: right;
  279. margin: 0.786em 2em 0 5em;
  280. width: 248px;
  281. }
  282. #featured figure img {display: block; float: right;}
  283. #featured h2 {color: #C74451; font-size: 1.714em; margin-bottom: 0.333em;}
  284. #featured h3 {font-size: 1.429em; margin-bottom: .5em;}
  285. #featured h3 a:link, #featured h3 a:visited {color: #000305; text-decoration: none;}
  286. #featured h3 a:hover, #featured h3 a:active {color: #fff;}
  287. /*
  288. Body
  289. *****************/
  290. .container {
  291. margin-bottom: 2em;
  292. overflow: hidden;
  293. padding: 20px 20px;
  294. width: 70%;
  295. border-radius: 10px;
  296. -moz-border-radius: 10px;
  297. -webkit-border-radius: 10px;
  298. }
  299. #content p, #content li, #content a {
  300. font-size: 20px;
  301. font-weight: 300;
  302. }
  303. /*
  304. Home page
  305. *****************/
  306. //#content-home section.titre {
  307. // background-image: url(../images/pessin2.png);
  308. // background-repeat: no-repeat;
  309. // background-position: right top;
  310. // background-size: 50%;
  311. // padding-bottom: 200px;
  312. // margin-bottom: -40px;
  313. //}
  314. #content-home h1 {
  315. font-size: 56px;
  316. font-family: 'Oswald', arial, serif;
  317. font-weight: lighter;
  318. text-transform: uppercase;
  319. letter-spacing: 7px;
  320. margin-left: 20px;
  321. text-align: left;
  322. }
  323. #content-home h2 {
  324. font-size: 32px;
  325. font-family: 'Lato', arial, serif;
  326. font-weight: normal;
  327. text-transform: none;
  328. margin-top: 0;
  329. text-align: left;
  330. padding-top: 20px;
  331. line-height: 1.25;
  332. margin-left: 20px;
  333. }
  334. #content-home section {
  335. padding: 80px 0;
  336. text-align: center;
  337. }
  338. #content-home .separateur {
  339. width: 100%;
  340. height: 10px;
  341. background-color: #EEE;
  342. position: absolute;
  343. left: 0;
  344. right: 0;
  345. z-index: -1;
  346. }
  347. #content-home blockquote {
  348. background-color: #dc4807;
  349. display: inline-block;
  350. padding: 40px 20px;
  351. color: #FFF;
  352. font-size: 28px;
  353. margin: 0;
  354. -moz-box-shadow: 1px 1px 5px 0px #c0c0c0;
  355. -webkit-box-shadow: 1px 1px 5px 0px #c0c0c0;
  356. -o-box-shadow: 1px 1px 5px 0px #c0c0c0;
  357. box-shadow: 1px 1px 5px 0px #c0c0c0;
  358. filter:progid:DXImageTransform.Microsoft.Shadow(color=#c0c0c0, Direction=134, Strength=5);
  359. }
  360. #content-home blockquote + .separateur {
  361. margin-top: -70px;
  362. }
  363. #content-home blockquote p {
  364. width: 80%;
  365. text-align: center;
  366. margin: auto;
  367. }
  368. #content-home .presentation {
  369. background-image: url(../images/deco-titre.png);
  370. background-repeat: no-repeat;
  371. padding: 40px 80px;
  372. font-size: 24px;
  373. width: 70%;
  374. margin-top: 120px;
  375. margin-bottom: 120px;
  376. margin-left: 30%;
  377. }
  378. #content-home h3:nth-child(even) {
  379. text-align: right;
  380. padding-right: 50px;
  381. }
  382. #content-home h3:nth-child(odd) {
  383. text-align: left;
  384. padding-left: 50px;
  385. }
  386. #content-home h3 + .separateur {
  387. margin-top: -40px;
  388. }
  389. #content-home h3 span {
  390. background-color: #EEE;
  391. display: inline-block;
  392. padding: 20px 40px;
  393. text-transform: uppercase;
  394. color: #000;
  395. font-size: 32px;
  396. font-weight: lighter;
  397. }
  398. #content-home .valeurs {
  399. width: 30%;
  400. display: inline-block;
  401. }
  402. #content-home .valeurs img {
  403. width: 70%;
  404. text-align: center;
  405. }
  406. #content-home .valeurs.nonprofit img {
  407. width: 50%;
  408. }
  409. #content-home .valeurs h4 {
  410. font-size: 22px;
  411. font-weight: bold;
  412. font-family: Lato, Arial, sans-serif;
  413. }
  414. #content-home .valeurs p {
  415. font-size: 18px;
  416. padding: 0 40px;
  417. }
  418. #content-home .services li {
  419. list-style: none;
  420. display: inline-block;
  421. width: 49%;
  422. vertical-align: top;
  423. }
  424. #content-home .services li span {
  425. font-family: Oswald, Arial, serif;
  426. font-size: 100px;
  427. color: #EEE;
  428. }
  429. #content-home .services li h4 {
  430. font-family: Lato, Arial, sans-serif;
  431. font-size: 24px;
  432. font-weight: bold;
  433. margin-top: 0;
  434. }
  435. #content-home .services li p {
  436. font-size: 18px;
  437. padding: 0 30px;
  438. }
  439. /*
  440. Extras
  441. *****************/
  442. #extras {margin: 0 auto 3em auto; overflow: hidden;}
  443. #extras ul {list-style: none; margin: 0;}
  444. #extras li {border-bottom: 1px solid #fff;}
  445. #extras h2 {
  446. color: #C74350;
  447. font-size: 1.429em;
  448. margin-bottom: .25em;
  449. padding: 0 3px;
  450. }
  451. #extras a:link, #extras a:visited {
  452. color: #444;
  453. display: block;
  454. border-bottom: 1px solid #F4E3E3;
  455. text-decoration: none;
  456. padding: .3em .25em;
  457. }
  458. #extras a:hover, #extras a:active {color: #fff;}
  459. /* Blogroll */
  460. #extras .blogroll {
  461. float: left;
  462. width: 615px;
  463. }
  464. #extras .blogroll li {float: left; margin: 0 20px 0 0; width: 185px;}
  465. /* Social */
  466. #extras .social {
  467. float: right;
  468. width: 175px;
  469. }
  470. #extras div[class='social'] a {
  471. background-repeat: no-repeat;
  472. background-position: 3px 6px;
  473. padding-left: 25px;
  474. }
  475. /* Icons */
  476. .social a[href*='about.me'] {background-image: url('../images/icons/aboutme.png');}
  477. .social a[href*='bitbucket.org'] {background-image: url('../images/icons/bitbucket.png');}
  478. .social a[href*='delicious.com'] {background-image: url('../images/icons/delicious.png');}
  479. .social a[href*='digg.com'] {background-image: url('../images/icons/digg.png');}
  480. .social a[href*='facebook.com'] {background-image: url('../images/icons/facebook.png');}
  481. .social a[href*='gitorious.org'] {background-image: url('../images/icons/gitorious.png');}
  482. .social a[href*='github.com'],
  483. .social a[href*='git.io'] {
  484. background-image: url('../images/icons/github.png');
  485. background-size: 16px 16px;
  486. }
  487. .social a[href*='gittip.com'] {background-image: url('../images/icons/gittip.png');}
  488. .social a[href*='plus.google.com'] {background-image: url('../images/icons/google-plus.png');}
  489. .social a[href*='groups.google.com'] {background-image: url('../images/icons/google-groups.png');}
  490. .social a[href*='news.ycombinator.com'],
  491. .social a[href*='hackernewsers.com'] {background-image: url('../images/icons/hackernews.png');}
  492. .social a[href*='last.fm'], .social a[href*='lastfm.'] {background-image: url('../images/icons/lastfm.png');}
  493. .social a[href*='linkedin.com'] {background-image: url('../images/icons/linkedin.png');}
  494. .social a[href*='reddit.com'] {background-image: url('../images/icons/reddit.png');}
  495. .social a[type$='atom+xml'], .social a[type$='rss+xml'] {background-image: url('../images/icons/rss.png');}
  496. .social a[href*='slideshare.net'] {background-image: url('../images/icons/slideshare.png');}
  497. .social a[href*='speakerdeck.com'] {background-image: url('../images/icons/speakerdeck.png');}
  498. .social a[href*='stackoverflow.com'] {background-image: url('../images/icons/stackoverflow.png');}
  499. .social a[href*='twitter.com'] {background-image: url('../images/icons/twitter.png');}
  500. .social a[href*='vimeo.com'] {background-image: url('../images/icons/vimeo.png');}
  501. .social a[href*='youtube.com'] {background-image: url('../images/icons/youtube.png');}
  502. /*
  503. About
  504. *****************/
  505. #about {
  506. background: #fff;
  507. font-style: normal;
  508. margin-bottom: 2em;
  509. overflow: hidden;
  510. padding: 20px;
  511. text-align: left;
  512. width: 760px;
  513. border-radius: 10px;
  514. -moz-border-radius: 10px;
  515. -webkit-border-radius: 10px;
  516. }
  517. #about .primary {float: left; width: 165px;}
  518. #about .primary strong {color: #C64350; display: block; font-size: 1.286em;}
  519. #about .photo {float: left; margin: 5px 20px;}
  520. #about .url:link, #about .url:visited {text-decoration: none;}
  521. #about .bio {float: right; width: 500px;}
  522. /*
  523. Footer
  524. *****************/
  525. #contentinfo {
  526. background-color: #000;
  527. text-align: center;
  528. padding: 50px 0 30px;
  529. }
  530. #contentinfo a {
  531. color: #999;
  532. text-decoration: none;
  533. }
  534. /***** Sections *****/
  535. /* Blog */
  536. .hentry {
  537. display: block;
  538. clear: both;
  539. border-bottom: 1px solid #eee;
  540. padding: 1.5em 0;
  541. }
  542. li:last-child .hentry, #content > .hentry {border: 0; margin: 0;}
  543. #content > .hentry {padding: 1em 0;}
  544. .hentry img{display : none ;}
  545. .entry-title {
  546. font-size: 3em;
  547. font-family: Lato;
  548. font-weight: 300;
  549. margin-bottom: 60px;
  550. margin-top: 30px;
  551. text-align: center;
  552. }
  553. .entry-title span {
  554. display: inline-block;
  555. padding: 0 80px;
  556. height: 100px;
  557. background-image: url(../images/deco-titre.png);
  558. background-repeat: no-repeat;
  559. background-position: right 10px;
  560. }
  561. .entry-title a:link, .entry-title a:visited {text-decoration: none; color: #333;}
  562. .entry-title a:visited {background-color: #fff;}
  563. .hentry .post-info * {font-style: normal;}
  564. /* Content */
  565. .hentry footer {margin-bottom: 2em;}
  566. .hentry footer address {display: inline;}
  567. #posts-list footer address {display: block;}
  568. /* Blog Index */
  569. #posts-list {list-style: none; margin: 0;}
  570. #posts-list .hentry {padding-left: 10px; position: relative;}
  571. #posts-list footer {
  572. left: 10px;
  573. position: relative;
  574. float: left;
  575. top: 0.5em;
  576. width: 190px;
  577. }
  578. /* About the Author */
  579. #about-author {
  580. background: #f9f9f9;
  581. clear: both;
  582. font-style: normal;
  583. margin: 2em 0;
  584. padding: 10px 20px 15px 20px;
  585. border-radius: 5px;
  586. -moz-border-radius: 5px;
  587. -webkit-border-radius: 5px;
  588. }
  589. #about-author strong {
  590. color: #C64350;
  591. clear: both;
  592. display: block;
  593. font-size: 1.429em;
  594. }
  595. #about-author .photo {border: 1px solid #ddd; float: left; margin: 5px 1em 0 0;}
  596. /* Comments */
  597. #comments-list {list-style: none; margin: 0 1em;}
  598. #comments-list blockquote {
  599. background: #f8f8f8;
  600. clear: both;
  601. font-style: normal;
  602. margin: 0;
  603. padding: 15px 20px;
  604. border-radius: 5px;
  605. -moz-border-radius: 5px;
  606. -webkit-border-radius: 5px;
  607. }
  608. #comments-list footer {color: #888; padding: .5em 1em 0 0; text-align: right;}
  609. #comments-list li:nth-child(2n) blockquote {background: #F5f5f5;}
  610. /* Add a Comment */
  611. #add-comment label {clear: left; float: left; text-align: left; width: 150px;}
  612. #add-comment input[type='text'],
  613. #add-comment input[type='email'],
  614. #add-comment input[type='url'] {float: left; width: 200px;}
  615. #add-comment textarea {float: left; height: 150px; width: 495px;}
  616. #add-comment p.req {clear: both; margin: 0 .5em 1em 0; text-align: right;}
  617. #add-comment input[type='submit'] {float: right; margin: 0 .5em;}
  618. #add-comment * {margin-bottom: .5em;}
  619. /* Valeurs */
  620. #content .valeurs {
  621. width: 33%;
  622. text-align: center;
  623. display: inline-block;
  624. font-weight: 600;
  625. margin-bottom: 30px
  626. }
  627. #content .valeurs.nonprofit img{
  628. width: 70%;
  629. }
  630. #content .valeurs.entraide img{
  631. width: 80%;
  632. }
  633. #content .valeurs.partage img{
  634. width: 90%;
  635. }
  636. #content .valeurs img {
  637. width: 100%;
  638. display: block;
  639. margin: auto;
  640. margin-bottom: 20px;
  641. }
  642. .show {
  643. display: block; }
  644. .hide,
  645. .hidden {
  646. display: none; }
  647. .invisible {
  648. visibility: hidden; }
  649. .left {
  650. float: left; }
  651. .right {
  652. float: right; }
  653. .clearfix:before, .clearfix:after {
  654. display: table;
  655. content: " "; }
  656. .clearfix:after {
  657. clear: both; }
  658. .text-left {
  659. text-align: left; }
  660. .text-right {
  661. text-align: right; }
  662. .center {
  663. text-align: center; }
  664. ul.list-inline {
  665. list-style: none;
  666. padding-left: 0;
  667. margin: 0 0 0 -5px; }
  668. ul.list-inline > li {
  669. display: inline-block;
  670. padding: 0 5px 0 5px; }
  671. *, *:before, *:after {
  672. box-sizing: border-box; }
  673. .container {
  674. max-width: 64rem;
  675. width: 94%;
  676. margin: 0 auto; }
  677. @media all and (min-width: 40em) {
  678. .container {
  679. width: 100%;
  680. padding: 0 1rem; } }
  681. @media all and (min-width: 40em) {
  682. .col1of1 {
  683. float: left;
  684. width: 100%; } }
  685. @media all and (min-width: 40em) {
  686. .col1of2 {
  687. float: left;
  688. width: 50%; } }
  689. @media all and (min-width: 40em) {
  690. .col1of3 {
  691. float: left;
  692. width: 33.33333%; } }
  693. @media all and (min-width: 40em) {
  694. .col2of3 {
  695. float: left;
  696. width: 66.66667%; } }
  697. @media all and (min-width: 40em) {
  698. .col1of4 {
  699. float: left;
  700. width: 25%; } }
  701. @media all and (min-width: 40em) {
  702. .col3of4 {
  703. float: left;
  704. width: 75%; } }
  705. @media all and (min-width: 40em) {
  706. .col1of5 {
  707. float: left;
  708. width: 20%; } }
  709. @media all and (min-width: 40em) {
  710. .col2of5 {
  711. float: left;
  712. width: 40%; } }
  713. @media all and (min-width: 40em) {
  714. .col3of5 {
  715. float: left;
  716. width: 60%; } }
  717. @media all and (min-width: 40em) {
  718. .col4of5 {
  719. float: left;
  720. width: 80%; } }
  721. @media all and (min-width: 40em) {
  722. .col1of6 {
  723. float: left;
  724. width: 16.66667%; } }
  725. @media all and (min-width: 40em) {
  726. .col5of6 {
  727. float: left;
  728. width: 83.33333%; } }
  729. .row1 {
  730. min-height: 2.5rem; }
  731. @media all and (min-width: 40em) {
  732. .row1 {
  733. height: 2.5rem; } }
  734. .row2 {
  735. min-height: 5rem; }
  736. @media all and (min-width: 40em) {
  737. .row2 {
  738. height: 5rem; } }
  739. .row3 {
  740. min-height: 7.5rem; }
  741. @media all and (min-width: 40em) {
  742. .row3 {
  743. height: 7.5rem; } }
  744. .row4 {
  745. min-height: 10rem; }
  746. @media all and (min-width: 40em) {
  747. .row4 {
  748. height: 10rem; } }
  749. .row5 {
  750. min-height: 12.5rem; }
  751. @media all and (min-width: 40em) {
  752. .row5 {
  753. height: 12.5rem; } }
  754. .row6 {
  755. min-height: 15rem; }
  756. @media all and (min-width: 40em) {
  757. .row6 {
  758. height: 15rem; } }
  759. .row7 {
  760. min-height: 17.5rem; }
  761. @media all and (min-width: 40em) {
  762. .row7 {
  763. height: 17.5rem; } }
  764. .row8 {
  765. min-height: 20rem; }
  766. @media all and (min-width: 40em) {
  767. .row8 {
  768. height: 20rem; } }
  769. .row9 {
  770. min-height: 22.5rem; }
  771. @media all and (min-width: 40em) {
  772. .row9 {
  773. height: 22.5rem; } }
  774. .row10 {
  775. min-height: 25rem; }
  776. @media all and (min-width: 40em) {
  777. .row10 {
  778. height: 25rem; } }
  779. .row11 {
  780. min-height: 27.5rem; }
  781. @media all and (min-width: 40em) {
  782. .row11 {
  783. height: 27.5rem; } }
  784. .row12 {
  785. min-height: 30rem; }
  786. @media all and (min-width: 40em) {
  787. .row12 {
  788. height: 30rem; } }
  789. .row13 {
  790. min-height: 32.5rem; }
  791. @media all and (min-width: 40em) {
  792. .row13 {
  793. height: 32.5rem; } }
  794. .row14 {
  795. min-height: 35rem; }
  796. @media all and (min-width: 40em) {
  797. .row14 {
  798. height: 35rem; } }
  799. .row15 {
  800. min-height: 37.5rem; }
  801. @media all and (min-width: 40em) {
  802. .row15 {
  803. height: 37.5rem; } }
  804. .row16 {
  805. min-height: 40rem; }
  806. @media all and (min-width: 40em) {
  807. .row16 {
  808. height: 40rem; } }
  809. @media all and (min-width: 40em) {
  810. .pre1of1 {
  811. margin-left: 100%; } }
  812. @media all and (min-width: 40em) {
  813. .pre1of2 {
  814. margin-left: 50%; } }
  815. @media all and (min-width: 40em) {
  816. .pre2of2 {
  817. margin-left: 100%; } }
  818. @media all and (min-width: 40em) {
  819. .pre1of3 {
  820. margin-left: 33.33333%; } }
  821. @media all and (min-width: 40em) {
  822. .pre2of3 {
  823. margin-left: 66.66667%; } }
  824. @media all and (min-width: 40em) {
  825. .pre3of3 {
  826. margin-left: 100%; } }
  827. @media all and (min-width: 40em) {
  828. .pre1of4 {
  829. margin-left: 25%; } }
  830. @media all and (min-width: 40em) {
  831. .pre2of4 {
  832. margin-left: 50%; } }
  833. @media all and (min-width: 40em) {
  834. .pre3of4 {
  835. margin-left: 75%; } }
  836. @media all and (min-width: 40em) {
  837. .pre4of4 {
  838. margin-left: 100%; } }
  839. @media all and (min-width: 40em) {
  840. .pre1of5 {
  841. margin-left: 20%; } }
  842. @media all and (min-width: 40em) {
  843. .pre2of5 {
  844. margin-left: 40%; } }
  845. @media all and (min-width: 40em) {
  846. .pre3of5 {
  847. margin-left: 60%; } }
  848. @media all and (min-width: 40em) {
  849. .pre4of5 {
  850. margin-left: 80%; } }
  851. @media all and (min-width: 40em) {
  852. .pre5of5 {
  853. margin-left: 100%; } }
  854. @media all and (min-width: 40em) {
  855. .pre1of6 {
  856. margin-left: 16.66667%; } }
  857. @media all and (min-width: 40em) {
  858. .pre2of6 {
  859. margin-left: 33.33333%; } }
  860. @media all and (min-width: 40em) {
  861. .pre3of6 {
  862. margin-left: 50%; } }
  863. @media all and (min-width: 40em) {
  864. .pre4of6 {
  865. margin-left: 66.66667%; } }
  866. @media all and (min-width: 40em) {
  867. .pre5of6 {
  868. margin-left: 83.33333%; } }
  869. @media all and (min-width: 40em) {
  870. .pre6of6 {
  871. margin-left: 100%; } }
  872. @media all and (min-width: 40em) {
  873. .post1of1 {
  874. margin-right: 100%; } }
  875. @media all and (min-width: 40em) {
  876. .post1of2 {
  877. margin-right: 50%; } }
  878. @media all and (min-width: 40em) {
  879. .post2of2 {
  880. margin-right: 100%; } }
  881. @media all and (min-width: 40em) {
  882. .post1of3 {
  883. margin-right: 33.33333%; } }
  884. @media all and (min-width: 40em) {
  885. .post2of3 {
  886. margin-right: 66.66667%; } }
  887. @media all and (min-width: 40em) {
  888. .post3of3 {
  889. margin-right: 100%; } }
  890. @media all and (min-width: 40em) {
  891. .post1of4 {
  892. margin-right: 25%; } }
  893. @media all and (min-width: 40em) {
  894. .post2of4 {
  895. margin-right: 50%; } }
  896. @media all and (min-width: 40em) {
  897. .post3of4 {
  898. margin-right: 75%; } }
  899. @media all and (min-width: 40em) {
  900. .post4of4 {
  901. margin-right: 100%; } }
  902. @media all and (min-width: 40em) {
  903. .post1of5 {
  904. margin-right: 20%; } }
  905. @media all and (min-width: 40em) {
  906. .post2of5 {
  907. margin-right: 40%; } }
  908. @media all and (min-width: 40em) {
  909. .post3of5 {
  910. margin-right: 60%; } }
  911. @media all and (min-width: 40em) {
  912. .post4of5 {
  913. margin-right: 80%; } }
  914. @media all and (min-width: 40em) {
  915. .post5of5 {
  916. margin-right: 100%; } }
  917. @media all and (min-width: 40em) {
  918. .post1of6 {
  919. margin-right: 16.66667%; } }
  920. @media all and (min-width: 40em) {
  921. .post2of6 {
  922. margin-right: 33.33333%; } }
  923. @media all and (min-width: 40em) {
  924. .post3of6 {
  925. margin-right: 50%; } }
  926. @media all and (min-width: 40em) {
  927. .post4of6 {
  928. margin-right: 66.66667%; } }
  929. @media all and (min-width: 40em) {
  930. .post5of6 {
  931. margin-right: 83.33333%; } }
  932. @media all and (min-width: 40em) {
  933. .post6of6 {
  934. margin-right: 100%; } }
  935. .m0 {
  936. margin: 0; }
  937. .m0x {
  938. margin: 0 0; }
  939. .m0y {
  940. margin: 0 0; }
  941. .m0t {
  942. margin-top: 0; }
  943. .m0r {
  944. margin-right: 0; }
  945. .m0b {
  946. margin-bottom: 0; }
  947. .m0l {
  948. margin-left: 0; }
  949. .p0 {
  950. padding: 0; }
  951. .p0x {
  952. padding: 0 0; }
  953. .p0y {
  954. padding: 0 0; }
  955. .m1 {
  956. margin: 1rem; }
  957. .m1x {
  958. margin: 0 1rem; }
  959. .m1y {
  960. margin: 1rem 0; }
  961. .m1t {
  962. margin-top: 1rem; }
  963. .m1r {
  964. margin-right: 1rem; }
  965. .m1b {
  966. margin-bottom: 1rem; }
  967. .m1l {
  968. margin-left: 1rem; }
  969. .p1 {
  970. padding: 1rem; }
  971. .p1x {
  972. padding: 0 1rem; }
  973. .p1y {
  974. padding: 1rem 0; }
  975. .m2 {
  976. margin: 2rem; }
  977. .m2x {
  978. margin: 0 2rem; }
  979. .m2y {
  980. margin: 2rem 0; }
  981. .m2t {
  982. margin-top: 2rem; }
  983. .m2r {
  984. margin-right: 2rem; }
  985. .m2b {
  986. margin-bottom: 2rem; }
  987. .m2l {
  988. margin-left: 2rem; }
  989. .p2 {
  990. padding: 2rem; }
  991. .p2x {
  992. padding: 0 2rem; }
  993. .p2y {
  994. padding: 2rem 0; }
  995. .m3 {
  996. margin: 3rem; }
  997. .m3x {
  998. margin: 0 3rem; }
  999. .m3y {
  1000. margin: 3rem 0; }
  1001. .m3t {
  1002. margin-top: 3rem; }
  1003. .m3r {
  1004. margin-right: 3rem; }
  1005. .m3b {
  1006. margin-bottom: 3rem; }
  1007. .m3l {
  1008. margin-left: 3rem; }
  1009. .p3 {
  1010. padding: 3rem; }
  1011. .p3x {
  1012. padding: 0 3rem; }
  1013. .p3y {
  1014. padding: 3rem 0; }
  1015. .m4 {
  1016. margin: 4rem; }
  1017. .m4x {
  1018. margin: 0 4rem; }
  1019. .m4y {
  1020. margin: 4rem 0; }
  1021. .m4t {
  1022. margin-top: 4rem; }
  1023. .m4r {
  1024. margin-right: 4rem; }
  1025. .m4b {
  1026. margin-bottom: 4rem; }
  1027. .m4l {
  1028. margin-left: 4rem; }
  1029. .p4 {
  1030. padding: 4rem; }
  1031. .p4x {
  1032. padding: 0 4rem; }
  1033. .p4y {
  1034. padding: 4rem 0; }
  1035. .centered {
  1036. float: none;
  1037. margin: 0 auto; }