main.css 24 KB

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