main.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893
  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. position: relative;
  25. }
  26. /* Headings */
  27. h1 {font-size: 2em }
  28. h2 {
  29. font-size: 2.5em;
  30. text-transform: uppercase;
  31. padding-top:90px;
  32. margin-bottom: .8em; /* 22px */
  33. }
  34. h2:first-child {margin-top:0;} /* 22px */
  35. h3 {font-size: 2em; color: #999; margin-top: 40px} /* 20px */
  36. h4 {font-size: 1.7em; margin-top: 30px;font-weight: 300;} /* 18px */
  37. h5 {font-size: 1.143em} /* 16px */
  38. h6 {font-size: 1em} /* 14px */
  39. h1, h2, h3, h4, h5, h6 {
  40. font-weight: 300;
  41. line-height: 1.1;
  42. font-family: 'Oswald', arial, serif;
  43. }
  44. hr { border: 2px solid #EEEEEE; }
  45. /* Anchors */
  46. a {outline: 0;}
  47. a img {border: 0px; text-decoration: none;}
  48. a:link, a:visited {
  49. color: #e0470b ;
  50. padding: 0 1px;
  51. text-decoration: underline;
  52. }
  53. a:hover, a:active {
  54. color: #F00;
  55. text-decoration: none;
  56. }
  57. h1 a:hover {
  58. background-color: inherit
  59. }
  60. /* Paragraphs */
  61. div.line-block,
  62. p { margin-top: 1em;
  63. margin-bottom: 1em;}
  64. strong, b {font-weight: bolder;}
  65. em, i {font-style: italic;}
  66. /* Lists */
  67. ul {
  68. list-style: outside disc;
  69. list-style-image: url(../images/puce.png);
  70. margin: 0em 0 0 1.5em;
  71. }
  72. ol {
  73. list-style: outside decimal;
  74. margin: 0em 0 0 1.5em;
  75. }
  76. li { margin-top: 0.5em;
  77. margin-bottom: 1em; }
  78. .post-info {
  79. float:right;
  80. margin:10px;
  81. padding:5px;
  82. }
  83. .post-info p{
  84. margin-top: 1px;
  85. margin-bottom: 1px;
  86. }
  87. .readmore { float: right }
  88. dl {margin: 0 0 1.5em 0;}
  89. dt {font-weight: bold;}
  90. dd {margin-left: 1.5em;}
  91. /* Quotes */
  92. blockquote {
  93. margin: 20px;
  94. font-style: italic;
  95. }
  96. cite {}
  97. q {}
  98. div.note {
  99. float: right;
  100. margin: 5px;
  101. font-size: 85%;
  102. max-width: 300px;
  103. }
  104. /* Tables */
  105. table {margin: .5em auto 1.5em auto; width: 98%;}
  106. /* Thead */
  107. thead th {padding: .5em .4em; text-align: left;}
  108. thead td {}
  109. /* Tbody */
  110. tbody td {padding: .5em .4em;}
  111. tbody th {}
  112. tbody .alt td {}
  113. tbody .alt th {}
  114. /* Tfoot */
  115. tfoot th {}
  116. tfoot td {}
  117. /* HTML5 tags */
  118. header, section, footer,
  119. aside, nav, article, figure {
  120. display: block;
  121. }
  122. /***** Layout *****/
  123. .body {
  124. clear: both;
  125. margin: 0 auto;
  126. width: 100%;
  127. }
  128. img.right, figure.right {float: right; margin: 0 0 2em 2em;}
  129. img.left, figure.left {float: left; margin: 0 2em 2em 0;}
  130. /*
  131. Global
  132. *****************/
  133. a.bouton {
  134. display: inline-block;
  135. padding: 20px;
  136. border: 3px solid #dc4807;
  137. text-decoration: none;
  138. font-size: 20px;
  139. margin-top: 60px;
  140. }
  141. /*
  142. Header
  143. *****************/
  144. #banner {
  145. border-bottom: 10px solid #e0470b;
  146. background: #000;
  147. }
  148. #headerContainer {
  149. width: 1140px;
  150. margin: auto;
  151. padding: 20px 0;
  152. font-size: 14px;
  153. display: table;
  154. position: relative;
  155. z-index: 100;
  156. }
  157. #banner #logo {
  158. margin-right: 20px;
  159. vertical-align: middle;
  160. display: table-cell;
  161. }
  162. #banner #logo a {
  163. width:230px;
  164. height: 77px;
  165. display: block;
  166. content: " ";
  167. background-image: url(../images/logo_blc.png);
  168. background-size: 230px auto;
  169. background-repeat: no-repeat;
  170. background-position: center;
  171. }
  172. /* Main Nav */
  173. #banner nav {
  174. display: table-cell;
  175. background: #000305;
  176. font-size: 1.2em;
  177. line-height: 30px;
  178. text-align: right;
  179. vertical-align: middle;
  180. }
  181. #banner nav ul {
  182. list-style: none;
  183. margin: 0;
  184. }
  185. #banner nav li {
  186. display: inline;
  187. margin: 0 5px;
  188. }
  189. #banner nav a:link, #banner nav a:visited {
  190. color: #fff;
  191. display: inline-block;
  192. padding: 5px 1em;
  193. font-family: Lato;
  194. text-decoration: none;
  195. text-transform: lowercase;
  196. font-variant: small-caps;
  197. }
  198. /* #banner nav a:active, */
  199. #banner nav .active a:link, #banner nav .active a:visited {
  200. border: 1px solid #FFF;
  201. color: #fff;
  202. text-shadow: none !important;
  203. }
  204. #banner nav li.icon a {
  205. background-repeat: no-repeat;
  206. background-position: center;
  207. background-size: 18px 18px;
  208. height: 18px;
  209. vertical-align: middle;
  210. }
  211. #banner nav li.twitter a {
  212. background-image: url(../images/twitter.png);
  213. }
  214. #banner nav li.rss a {
  215. background-image: url(../images/rss.png);
  216. }
  217. .cacheMenu {
  218. position: absolute;
  219. top: 84px;
  220. bottom: 0;
  221. left: 0;
  222. right: 0;
  223. content: " ";
  224. background-color: rgba(0,0,0,.5);
  225. display: none;
  226. }
  227. .burger {
  228. display: table-cell;
  229. text-align: right;
  230. }
  231. .burger ul {
  232. display: inline-block;
  233. margin-right: 30px;
  234. list-style: none;
  235. }
  236. .burger li {
  237. content: " ";
  238. background-color: #FFF;
  239. width: 30px;
  240. height: 4px;
  241. display: block;
  242. margin-bottom: 6px;
  243. }
  244. /* Responsive header */
  245. @media screen and (min-width: 1141px){
  246. .burger {
  247. display: none;
  248. }
  249. }
  250. @media screen and (max-width: 1140px){
  251. #banner #logo {
  252. padding-left: 25px;
  253. }
  254. #banner #logo a {
  255. width:155px;
  256. height: 32px;
  257. background-image: url(../images/logo_blc_small.png);
  258. background-size: 153px auto;
  259. }
  260. #headerContainer {
  261. width: 100%;
  262. }
  263. #banner nav {
  264. position: absolute;
  265. top: 80px;
  266. width: 300px;
  267. right: -300px;
  268. -webkit-transition: right .5s; /* Safari */
  269. transition: right .5s;
  270. }
  271. #banner nav.opened {
  272. right: 0;
  273. -webkit-transition: right .5s; /* Safari */
  274. transition: right .5s;
  275. }
  276. #banner nav li {
  277. display: block;
  278. padding: 20px 1em;
  279. border-bottom: 1px solid #FFF;
  280. text-align: left;
  281. margin:0;
  282. }
  283. #banner nav li:first-child {
  284. border-top: 1px solid #FFF;
  285. }
  286. #banner nav li.icon {
  287. border-bottom: none;
  288. float: left;
  289. }
  290. #banner nav li.icon a{
  291. display: inline;
  292. background-position: left;
  293. padding-left: 30px;
  294. }
  295. #banner nav li.twitter a:after {
  296. content: "Twitter";
  297. line-height: 18px;
  298. }
  299. #banner nav li.rss a:after {
  300. content: "rss";
  301. font-size: 24px;
  302. line-height: 18px;
  303. }
  304. #banner nav li a {
  305. display: block;
  306. width: 100%;
  307. font-size: 22px;
  308. font-weight: bold;
  309. }
  310. #banner nav .active {
  311. background: #333;
  312. }
  313. #banner nav .active a:link, #banner nav .active a:visited {
  314. border: none;
  315. }
  316. }
  317. /*
  318. Side navigation
  319. *****************/
  320. nav#side-nav {
  321. display: inline-block;
  322. width: 25%;
  323. vertical-align: top;
  324. text-align: right;
  325. padding-right: 60px;
  326. }
  327. nav#side-nav ul {
  328. position: relative;
  329. list-style: none;
  330. padding-right: 40px;
  331. }
  332. nav#side-nav ul:before {
  333. content: '';
  334. margin: 25px 0;
  335. position: absolute;
  336. z-index: -1;
  337. right: -1px;
  338. bottom: -1px;
  339. top: -1px;
  340. border: 1px solid #ccc;
  341. border-left-width: 0;
  342. }
  343. nav#side-nav ul li a {
  344. padding-right: 40px;
  345. margin-right: -47px;
  346. background-image: url(../images/puce-sideNav.png);
  347. background-repeat: no-repeat;
  348. background-position: right;
  349. height: 40px;
  350. display: inline-block;
  351. line-height: 40px;
  352. }
  353. nav#side-nav ul li a.active {
  354. background-image: url(../images/puce-sideNav-active.png);
  355. margin-right: -60px;
  356. padding-right: 55px;
  357. color: #333;
  358. font-weight: bolder;
  359. }
  360. nav#side-nav ul li a {
  361. font-size: 16px;
  362. color: #999;
  363. text-decoration: none;
  364. }
  365. /*
  366. Content
  367. *****************/
  368. div#content {
  369. display: inline-block;
  370. width: 60%;
  371. }
  372. /*
  373. Featured
  374. *****************/
  375. #featured {
  376. background: #fff;
  377. margin-bottom: 2em;
  378. overflow: hidden;
  379. padding: 20px;
  380. width: 760px;
  381. border-radius: 10px;
  382. -moz-border-radius: 10px;
  383. -webkit-border-radius: 10px;
  384. }
  385. #featured figure {
  386. border: 2px solid #eee;
  387. float: right;
  388. margin: 0.786em 2em 0 5em;
  389. width: 248px;
  390. }
  391. #featured figure img {display: block; float: right;}
  392. #featured h2 {color: #C74451; font-size: 1.714em; margin-bottom: 0.333em;}
  393. #featured h3 {font-size: 1.429em; margin-bottom: .5em;}
  394. #featured h3 a:link, #featured h3 a:visited {color: #000305; text-decoration: none;}
  395. #featured h3 a:hover, #featured h3 a:active {color: #fff;}
  396. /*
  397. Body
  398. *****************/
  399. .container {
  400. margin-bottom: 2em;
  401. overflow: hidden;
  402. padding: 20px 20px;
  403. width: 70%;
  404. border-radius: 10px;
  405. -moz-border-radius: 10px;
  406. -webkit-border-radius: 10px;
  407. }
  408. #content p, #content li, #content a {
  409. font-size: 20px;
  410. font-weight: 300;
  411. }
  412. /*
  413. Home page
  414. *****************/
  415. #content-home section.titre {
  416. background-image: url(../images/pessin2.png);
  417. background-repeat: no-repeat;
  418. background-position: right top;
  419. background-size: 50%;
  420. padding-bottom: 200px;
  421. margin-bottom: -40px;
  422. }
  423. #content-home h1 {
  424. font-size: 56px;
  425. font-family: 'Oswald', arial, serif;
  426. font-weight: lighter;
  427. text-transform: uppercase;
  428. letter-spacing: 7px;
  429. margin-left: 20px;
  430. text-align: left;
  431. }
  432. #content-home h2 {
  433. font-size: 32px;
  434. font-family: 'Lato', arial, serif;
  435. font-weight: normal;
  436. text-transform: none;
  437. margin-top: 0;
  438. text-align: left;
  439. padding-top: 20px;
  440. line-height: 1.25;
  441. margin-left: 20px;
  442. }
  443. #content-home section {
  444. padding: 80px 0;
  445. text-align: center;
  446. }
  447. #content-home .separateur {
  448. width: 100%;
  449. height: 10px;
  450. background-color: #EEE;
  451. position: absolute;
  452. left: 0;
  453. right: 0;
  454. z-index: -1;
  455. }
  456. #content-home blockquote {
  457. background-color: #dc4807;
  458. display: inline-block;
  459. padding: 40px 20px;
  460. color: #FFF;
  461. font-size: 28px;
  462. margin: 0;
  463. -moz-box-shadow: 1px 1px 5px 0px #c0c0c0;
  464. -webkit-box-shadow: 1px 1px 5px 0px #c0c0c0;
  465. -o-box-shadow: 1px 1px 5px 0px #c0c0c0;
  466. box-shadow: 1px 1px 5px 0px #c0c0c0;
  467. filter:progid:DXImageTransform.Microsoft.Shadow(color=#c0c0c0, Direction=134, Strength=5);
  468. }
  469. #content-home blockquote + .separateur {
  470. margin-top: -70px;
  471. }
  472. #content-home blockquote p {
  473. width: 80%;
  474. text-align: center;
  475. margin: auto;
  476. }
  477. #content-home .presentation {
  478. background-image: url(../images/deco-titre.png);
  479. background-repeat: no-repeat;
  480. padding: 40px 80px;
  481. font-size: 24px;
  482. width: 70%;
  483. margin-top: 120px;
  484. margin-bottom: 120px;
  485. margin-left: 30%;
  486. }
  487. #content-home h3:nth-child(even) {
  488. text-align: right;
  489. padding-right: 50px;
  490. }
  491. #content-home h3:nth-child(odd) {
  492. text-align: left;
  493. padding-left: 50px;
  494. }
  495. #content-home h3 + .separateur {
  496. margin-top: -40px;
  497. }
  498. #content-home h3 span {
  499. background-color: #EEE;
  500. display: inline-block;
  501. padding: 20px 40px;
  502. text-transform: uppercase;
  503. color: #000;
  504. font-size: 32px;
  505. font-weight: lighter;
  506. }
  507. #content-home .valeurs {
  508. width: 30%;
  509. display: inline-block;
  510. }
  511. #content-home .valeurs img {
  512. width: 70%;
  513. text-align: center;
  514. }
  515. #content-home .valeurs.nonprofit img {
  516. width: 50%;
  517. }
  518. #content-home .valeurs h4 {
  519. font-size: 22px;
  520. font-weight: bold;
  521. font-family: Lato, Arial, sans-serif;
  522. }
  523. #content-home .valeurs p {
  524. font-size: 18px;
  525. padding: 0 40px;
  526. }
  527. #content-home .services li {
  528. list-style: none;
  529. display: inline-block;
  530. width: 49%;
  531. vertical-align: top;
  532. }
  533. #content-home .services li span {
  534. font-family: Oswald, Arial, serif;
  535. font-size: 100px;
  536. color: #EEE;
  537. }
  538. #content-home .services li h4 {
  539. font-family: Lato, Arial, sans-serif;
  540. font-size: 24px;
  541. font-weight: bold;
  542. margin-top: 0;
  543. }
  544. #content-home .services li p {
  545. font-size: 18px;
  546. padding: 0 30px;
  547. }
  548. /*
  549. Extras
  550. *****************/
  551. #extras {margin: 0 auto 3em auto; overflow: hidden;}
  552. #extras ul {list-style: none; margin: 0;}
  553. #extras li {border-bottom: 1px solid #fff;}
  554. #extras h2 {
  555. color: #C74350;
  556. font-size: 1.429em;
  557. margin-bottom: .25em;
  558. padding: 0 3px;
  559. }
  560. #extras a:link, #extras a:visited {
  561. color: #444;
  562. display: block;
  563. border-bottom: 1px solid #F4E3E3;
  564. text-decoration: none;
  565. padding: .3em .25em;
  566. }
  567. #extras a:hover, #extras a:active {color: #fff;}
  568. /* Blogroll */
  569. #extras .blogroll {
  570. float: left;
  571. width: 615px;
  572. }
  573. #extras .blogroll li {float: left; margin: 0 20px 0 0; width: 185px;}
  574. /* Social */
  575. #extras .social {
  576. float: right;
  577. width: 175px;
  578. }
  579. #extras div[class='social'] a {
  580. background-repeat: no-repeat;
  581. background-position: 3px 6px;
  582. padding-left: 25px;
  583. }
  584. /* Icons */
  585. .social a[href*='about.me'] {background-image: url('../images/icons/aboutme.png');}
  586. .social a[href*='bitbucket.org'] {background-image: url('../images/icons/bitbucket.png');}
  587. .social a[href*='delicious.com'] {background-image: url('../images/icons/delicious.png');}
  588. .social a[href*='digg.com'] {background-image: url('../images/icons/digg.png');}
  589. .social a[href*='facebook.com'] {background-image: url('../images/icons/facebook.png');}
  590. .social a[href*='gitorious.org'] {background-image: url('../images/icons/gitorious.png');}
  591. .social a[href*='github.com'],
  592. .social a[href*='git.io'] {
  593. background-image: url('../images/icons/github.png');
  594. background-size: 16px 16px;
  595. }
  596. .social a[href*='gittip.com'] {background-image: url('../images/icons/gittip.png');}
  597. .social a[href*='plus.google.com'] {background-image: url('../images/icons/google-plus.png');}
  598. .social a[href*='groups.google.com'] {background-image: url('../images/icons/google-groups.png');}
  599. .social a[href*='news.ycombinator.com'],
  600. .social a[href*='hackernewsers.com'] {background-image: url('../images/icons/hackernews.png');}
  601. .social a[href*='last.fm'], .social a[href*='lastfm.'] {background-image: url('../images/icons/lastfm.png');}
  602. .social a[href*='linkedin.com'] {background-image: url('../images/icons/linkedin.png');}
  603. .social a[href*='reddit.com'] {background-image: url('../images/icons/reddit.png');}
  604. .social a[type$='atom+xml'], .social a[type$='rss+xml'] {background-image: url('../images/icons/rss.png');}
  605. .social a[href*='slideshare.net'] {background-image: url('../images/icons/slideshare.png');}
  606. .social a[href*='speakerdeck.com'] {background-image: url('../images/icons/speakerdeck.png');}
  607. .social a[href*='stackoverflow.com'] {background-image: url('../images/icons/stackoverflow.png');}
  608. .social a[href*='twitter.com'] {background-image: url('../images/icons/twitter.png');}
  609. .social a[href*='vimeo.com'] {background-image: url('../images/icons/vimeo.png');}
  610. .social a[href*='youtube.com'] {background-image: url('../images/icons/youtube.png');}
  611. /*
  612. About
  613. *****************/
  614. #about {
  615. background: #fff;
  616. font-style: normal;
  617. margin-bottom: 2em;
  618. overflow: hidden;
  619. padding: 20px;
  620. text-align: left;
  621. width: 760px;
  622. border-radius: 10px;
  623. -moz-border-radius: 10px;
  624. -webkit-border-radius: 10px;
  625. }
  626. #about .primary {float: left; width: 165px;}
  627. #about .primary strong {color: #C64350; display: block; font-size: 1.286em;}
  628. #about .photo {float: left; margin: 5px 20px;}
  629. #about .url:link, #about .url:visited {text-decoration: none;}
  630. #about .bio {float: right; width: 500px;}
  631. /*
  632. Footer
  633. *****************/
  634. #contentinfo {
  635. background-color: #000;
  636. text-align: center;
  637. padding: 50px 0 30px;
  638. }
  639. #contentinfo a {
  640. color: #999;
  641. text-decoration: none;
  642. }
  643. /***** Sections *****/
  644. /* Blog */
  645. .hentry {
  646. display: block;
  647. clear: both;
  648. border-bottom: 1px solid #eee;
  649. padding: 1.5em 0;
  650. }
  651. li:last-child .hentry, #content > .hentry {border: 0; margin: 0;}
  652. #content > .hentry {padding: 1em 0;}
  653. .hentry img{display : none ;}
  654. .entry-title {
  655. font-size: 3em;
  656. font-family: Lato;
  657. font-weight: 300;
  658. margin-bottom: 60px;
  659. margin-top: 30px;
  660. text-align: center;
  661. }
  662. .entry-title span {
  663. display: inline-block;
  664. padding: 0 80px;
  665. height: 100px;
  666. background-image: url(../images/deco-titre.png);
  667. background-repeat: no-repeat;
  668. background-position: right 10px;
  669. }
  670. .entry-title a:link, .entry-title a:visited {text-decoration: none; color: #333;}
  671. .entry-title a:visited {background-color: #fff;}
  672. .hentry .post-info * {font-style: normal;}
  673. /* Content */
  674. .hentry footer {margin-bottom: 2em;}
  675. .hentry footer address {display: inline;}
  676. #posts-list footer address {display: block;}
  677. /* Blog Index */
  678. #posts-list {list-style: none; margin: 0;}
  679. #posts-list .hentry {padding-left: 10px; position: relative;}
  680. #posts-list footer {
  681. left: 10px;
  682. position: relative;
  683. float: left;
  684. top: 0.5em;
  685. width: 190px;
  686. }
  687. /* About the Author */
  688. #about-author {
  689. background: #f9f9f9;
  690. clear: both;
  691. font-style: normal;
  692. margin: 2em 0;
  693. padding: 10px 20px 15px 20px;
  694. border-radius: 5px;
  695. -moz-border-radius: 5px;
  696. -webkit-border-radius: 5px;
  697. }
  698. #about-author strong {
  699. color: #C64350;
  700. clear: both;
  701. display: block;
  702. font-size: 1.429em;
  703. }
  704. #about-author .photo {border: 1px solid #ddd; float: left; margin: 5px 1em 0 0;}
  705. /* Comments */
  706. #comments-list {list-style: none; margin: 0 1em;}
  707. #comments-list blockquote {
  708. background: #f8f8f8;
  709. clear: both;
  710. font-style: normal;
  711. margin: 0;
  712. padding: 15px 20px;
  713. border-radius: 5px;
  714. -moz-border-radius: 5px;
  715. -webkit-border-radius: 5px;
  716. }
  717. #comments-list footer {color: #888; padding: .5em 1em 0 0; text-align: right;}
  718. #comments-list li:nth-child(2n) blockquote {background: #F5f5f5;}
  719. /* Add a Comment */
  720. #add-comment label {clear: left; float: left; text-align: left; width: 150px;}
  721. #add-comment input[type='text'],
  722. #add-comment input[type='email'],
  723. #add-comment input[type='url'] {float: left; width: 200px;}
  724. #add-comment textarea {float: left; height: 150px; width: 495px;}
  725. #add-comment p.req {clear: both; margin: 0 .5em 1em 0; text-align: right;}
  726. #add-comment input[type='submit'] {float: right; margin: 0 .5em;}
  727. #add-comment * {margin-bottom: .5em;}
  728. /* Valeurs */
  729. #content .valeurs {
  730. width: 33%;
  731. text-align: center;
  732. display: inline-block;
  733. font-weight: 600;
  734. margin-bottom: 30px
  735. }
  736. #content .valeurs.nonprofit img{
  737. width: 70%;
  738. }
  739. #content .valeurs.entraide img{
  740. width: 80%;
  741. }
  742. #content .valeurs.partage img{
  743. width: 90%;
  744. }
  745. #content .valeurs img {
  746. width: 100%;
  747. display: block;
  748. margin: auto;
  749. margin-bottom: 20px;
  750. }