main.css 24 KB

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