James Peret's blog. Built with Jekyll and the Mikey theme.

main.css 49KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943
  1. /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
  2. html {
  3. font-family: sans-serif;
  4. -ms-text-size-adjust: 100%;
  5. -webkit-text-size-adjust: 100%;
  6. }
  7. body {
  8. margin: 0;
  9. }
  10. article,
  11. aside,
  12. details,
  13. figcaption,
  14. figure,
  15. footer,
  16. header,
  17. hgroup,
  18. main,
  19. nav,
  20. section,
  21. summary {
  22. display: block;
  23. }
  24. audio,
  25. canvas,
  26. progress,
  27. video {
  28. display: inline-block;
  29. vertical-align: baseline;
  30. }
  31. audio:not([controls]) {
  32. display: none;
  33. height: 0;
  34. }
  35. [hidden],
  36. template {
  37. display: none;
  38. }
  39. a {
  40. background: transparent;
  41. }
  42. a:active,
  43. a:hover {
  44. outline: 0;
  45. }
  46. abbr[title] {
  47. border-bottom: 1px dotted;
  48. }
  49. b,
  50. strong {
  51. font-weight: bold;
  52. }
  53. dfn {
  54. font-style: italic;
  55. }
  56. h1 {
  57. font-size: 2em;
  58. margin: 0.67em 0;
  59. }
  60. mark {
  61. background: #ff0;
  62. color: #000;
  63. }
  64. small {
  65. font-size: 80%;
  66. }
  67. sub,
  68. sup {
  69. font-size: 75%;
  70. line-height: 0;
  71. position: relative;
  72. vertical-align: baseline;
  73. }
  74. sup {
  75. top: -0.5em;
  76. }
  77. sub {
  78. bottom: -0.25em;
  79. }
  80. img {
  81. border: 0;
  82. }
  83. svg:not(:root) {
  84. overflow: hidden;
  85. }
  86. figure {
  87. margin: 1em 40px;
  88. }
  89. hr {
  90. -webkit-box-sizing: content-box;
  91. box-sizing: content-box;
  92. height: 0;
  93. }
  94. pre {
  95. overflow: auto;
  96. }
  97. code,
  98. kbd,
  99. pre,
  100. samp {
  101. font-family: monospace, monospace;
  102. font-size: 1em;
  103. }
  104. button,
  105. input,
  106. optgroup,
  107. select,
  108. textarea {
  109. color: inherit;
  110. font: inherit;
  111. margin: 0;
  112. }
  113. button {
  114. overflow: visible;
  115. }
  116. button,
  117. select {
  118. text-transform: none;
  119. }
  120. button,
  121. html input[type="button"],
  122. input[type="reset"],
  123. input[type="submit"] {
  124. -webkit-appearance: button;
  125. cursor: pointer;
  126. }
  127. button[disabled],
  128. html input[disabled] {
  129. cursor: default;
  130. }
  131. button::-moz-focus-inner,
  132. input::-moz-focus-inner {
  133. border: 0;
  134. padding: 0;
  135. }
  136. input {
  137. line-height: normal;
  138. }
  139. input[type="checkbox"],
  140. input[type="radio"] {
  141. -webkit-box-sizing: border-box;
  142. box-sizing: border-box;
  143. padding: 0;
  144. }
  145. input[type="number"]::-webkit-inner-spin-button,
  146. input[type="number"]::-webkit-outer-spin-button {
  147. height: auto;
  148. }
  149. input[type="search"] {
  150. -webkit-appearance: textfield;
  151. -webkit-box-sizing: content-box;
  152. box-sizing: content-box;
  153. }
  154. input[type="search"]::-webkit-search-cancel-button,
  155. input[type="search"]::-webkit-search-decoration {
  156. -webkit-appearance: none;
  157. }
  158. fieldset {
  159. border: 1px solid #c0c0c0;
  160. margin: 0 2px;
  161. padding: 0.35em 0.625em 0.75em;
  162. }
  163. legend {
  164. border: 0;
  165. padding: 0;
  166. }
  167. textarea {
  168. overflow: auto;
  169. }
  170. optgroup {
  171. font-weight: bold;
  172. }
  173. table {
  174. border-collapse: collapse;
  175. border-spacing: 0;
  176. }
  177. td,
  178. th {
  179. padding: 0;
  180. }
  181. .animate {
  182. -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  183. transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  184. }
  185. .scaleIn {
  186. -webkit-transform: scale(0);
  187. -ms-transform: scale(0);
  188. transform: scale(0);
  189. }
  190. /* Setup */
  191. html {
  192. /* Change default typefaces here */
  193. font-family: "Source Serif Pro", serif;
  194. font-size: 137.5%;
  195. font-weight: 400;
  196. color: rgba(0, 0, 0, 0.8);
  197. -webkit-font-smoothing: antialiased;
  198. text-rendering: optimizeLegibility;
  199. font-feature-settings: "kern" 1;
  200. -webkit-font-feature-settings: "kern";
  201. -moz-font-feature-settings: "kern";
  202. -moz-font-feature-settings: "kern=1";
  203. }
  204. /* Copy & Lists */
  205. p {
  206. line-height: 1.5rem;
  207. letter-spacing: .01rem;
  208. margin-top: 1.5rem;
  209. margin-bottom: 0;
  210. }
  211. p.u--startsWithDoubleQuote {
  212. text-indent: -0.43em;
  213. }
  214. ul,
  215. ol {
  216. margin-top: 1.5rem;
  217. margin-bottom: 1.5rem;
  218. padding-left: 22px;
  219. }
  220. ul li,
  221. ol li {
  222. line-height: 1.5rem;
  223. }
  224. ul ul,
  225. ul ol,
  226. ol ul,
  227. ol ol {
  228. margin-top: 0;
  229. margin-bottom: 0;
  230. }
  231. blockquote {
  232. line-height: 1.5rem;
  233. font-style: italic;
  234. padding-left: 25px;
  235. margin-left: -29px;
  236. border-left: 4px solid #222;
  237. }
  238. @media (max-width: 767px) {
  239. blockquote {
  240. padding-left: 15px;
  241. margin-left: -19px;
  242. }
  243. }
  244. blockquote.u--startsWithDoubleQuote {
  245. text-indent: -0.40em;
  246. }
  247. blockquote.largeQuote {
  248. line-height: 1.4;
  249. text-align: center;
  250. font-size: 1.777rem;
  251. margin: 1.5rem -160px 0;
  252. padding-left: 0;
  253. border-left: 0;
  254. }
  255. @media (max-width: 767px) {
  256. blockquote.largeQuote {
  257. margin: 1.5rem 0 0;
  258. font-size: 1.333rem;
  259. padding-left: 0;
  260. }
  261. }
  262. blockquote.largeQuote a {
  263. background-position: 0 42px;
  264. }
  265. /* Headings */
  266. h1,
  267. h2,
  268. h3,
  269. h4,
  270. h5,
  271. h6 {
  272. /* Change heading typefaces here */
  273. font-family: "PT Sans", sans-serif;
  274. margin-top: 1.5rem;
  275. margin-bottom: 0;
  276. line-height: 1.5rem;
  277. letter-spacing: -0.02em;
  278. }
  279. h1 {
  280. font-size: 3.999rem;
  281. line-height: 4.5rem;
  282. margin-top: 3rem;
  283. }
  284. h2 {
  285. font-family: "Roboto", sans-serif;
  286. font-size: 2.666rem;
  287. line-height: 3rem;
  288. margin-top: 3rem;
  289. font-weight: 300;
  290. }
  291. h3 {
  292. /* font-size: 1.33 * $scale * 1rem;
  293. line-height: 1.34 * $leading;
  294. margin-top: 1.33 * $leading; */
  295. font-size: 1.777rem;
  296. line-height: 2.18rem;
  297. margin-top: 1.7rem;
  298. }
  299. h4 {
  300. font-size: 1.333rem;
  301. }
  302. h5 {
  303. font-size: 1.0664rem;
  304. }
  305. h6 {
  306. font-size: 0.9331rem;
  307. }
  308. a {
  309. color: rgba(0, 0, 0, 0.8);
  310. text-decoration: none;
  311. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, rgba(0, 0, 0, 0.8)));
  312. background-image: linear-gradient(to bottom, transparent 75%, rgba(0, 0, 0, 0.8) 75%);
  313. background-repeat: repeat-x;
  314. background-position: 0 22px;
  315. background-size: 2px 2px;
  316. }
  317. a:hover {
  318. color: rgba(0, 0, 0, 0.8);
  319. }
  320. /* Tables */
  321. table {
  322. margin-top: 1.5rem;
  323. border-spacing: 0px;
  324. border-collapse: collapse;
  325. }
  326. td,
  327. th {
  328. padding: 0;
  329. line-height: 33px;
  330. }
  331. /* Code blocks */
  332. code {
  333. vertical-align: bottom;
  334. }
  335. hr {
  336. border-color: #d5d5d5;
  337. padding: 0;
  338. border-top: 0;
  339. border-left: 0;
  340. border-right: 0;
  341. margin: 1.5rem 0;
  342. }
  343. /* Leading paragraph text */
  344. .lead {
  345. font-size: 1.333rem;
  346. }
  347. /* Hug a the block above you */
  348. .hug {
  349. margin-top: 0;
  350. }
  351. .container--content {
  352. max-width: 700px;
  353. }
  354. .is-darkBackgrounded,
  355. .is-darkBackgrounded a,
  356. .is-darkBackgrounded a:hover,
  357. .is-darkBackgrounded a:visited {
  358. color: #fff;
  359. }
  360. .img {
  361. margin-top: 1.5rem;
  362. background-repeat: no-repeat;
  363. background-position: center center;
  364. background-size: cover;
  365. }
  366. .img--fullContainer img {
  367. width: 100%;
  368. }
  369. .img--5xLeading {
  370. height: 7.5rem;
  371. }
  372. .img--6xLeading {
  373. height: 9rem;
  374. }
  375. .img--7xLeading {
  376. height: 10.5rem;
  377. }
  378. .img--8xLeading {
  379. height: 12rem;
  380. }
  381. .img--9xLeading {
  382. height: 13.5rem;
  383. }
  384. .img--10xLeading {
  385. height: 15rem;
  386. }
  387. .img--11xLeading {
  388. height: 16.5rem;
  389. }
  390. .img--12xLeading {
  391. height: 18rem;
  392. }
  393. .img--13xLeading {
  394. height: 19.5rem;
  395. }
  396. .img--14xLeading {
  397. height: 21rem;
  398. }
  399. .img--15xLeading {
  400. height: 22.5rem;
  401. }
  402. .img--16xLeading {
  403. height: 24rem;
  404. }
  405. html,
  406. body {
  407. overflow-x: hidden;
  408. }
  409. @media (max-width: 767px) {
  410. html,
  411. body {
  412. padding-right: 0;
  413. }
  414. }
  415. .brandLogo {
  416. background-image: url(../images/logo-white.svg);
  417. background-size: contain;
  418. background-repeat: no-repeat;
  419. background-position: 0 0;
  420. padding: 0;
  421. text-indent: -100em;
  422. overflow: hidden;
  423. }
  424. .brandLogo--small {
  425. width: 44px;
  426. height: 44px;
  427. }
  428. .brandLogo--black {
  429. background-image: url(../images/logo-black.svg);
  430. }
  431. .textLogo {
  432. display: block;
  433. background-image: url(../images/logo-text-black.svg);
  434. background-size: contain;
  435. background-repeat: no-repeat;
  436. background-position: 0 0;
  437. padding: 0;
  438. text-indent: -100em;
  439. overflow: hidden;
  440. }
  441. .textLogo--white {
  442. background-image: url(../images/logo-text-white.svg);
  443. }
  444. .textLogo--sidebar {
  445. width: 100%;
  446. height: auto;
  447. background-size: contain;
  448. background-position: center;
  449. opacity: 0.8;
  450. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  451. }
  452. .textLogo--sidebar:hover {
  453. opacity: 1;
  454. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  455. }
  456. .textLogo--frontpage {
  457. position: absolute;
  458. top: 132px;
  459. left: 50%;
  460. -webkit-transform: translateX(-50%);
  461. -ms-transform: translateX(-50%);
  462. transform: translateX(-50%);
  463. z-index: 500;
  464. margin: 0;
  465. width: 300px;
  466. height: 50px;
  467. background-size: 100%;
  468. background-position: 0;
  469. opacity: 0.9;
  470. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  471. }
  472. @media (max-width: 767px) {
  473. .textLogo--frontpage {
  474. width: 300px;
  475. height: 34px;
  476. top: 148px;
  477. }
  478. }
  479. * {
  480. -webkit-box-sizing: border-box;
  481. box-sizing: border-box;
  482. }
  483. *:before,
  484. *:after {
  485. -webkit-box-sizing: border-box;
  486. box-sizing: border-box;
  487. }
  488. .container {
  489. margin-right: auto;
  490. margin-left: auto;
  491. padding-left: 15px;
  492. padding-right: 15px;
  493. }
  494. .container:before, .container:after {
  495. content: " ";
  496. display: table;
  497. }
  498. .container:after {
  499. clear: both;
  500. }
  501. @media (min-width: 768px) {
  502. .container {
  503. width: 750px;
  504. }
  505. }
  506. @media (min-width: 992px) {
  507. .container {
  508. width: 970px;
  509. }
  510. }
  511. @media (min-width: 1200px) {
  512. .container {
  513. width: 1170px;
  514. }
  515. }
  516. .container-fluid {
  517. margin-right: auto;
  518. margin-left: auto;
  519. padding-left: 15px;
  520. padding-right: 15px;
  521. }
  522. .container-fluid:before, .container-fluid:after {
  523. content: " ";
  524. display: table;
  525. }
  526. .container-fluid:after {
  527. clear: both;
  528. }
  529. .row {
  530. margin-left: -15px;
  531. margin-right: -15px;
  532. }
  533. .row:before, .row:after {
  534. content: " ";
  535. display: table;
  536. }
  537. .row:after {
  538. clear: both;
  539. }
  540. .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  541. position: relative;
  542. min-height: 1px;
  543. padding-left: 15px;
  544. padding-right: 15px;
  545. }
  546. .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  547. float: left;
  548. }
  549. .col-xs-1 {
  550. width: 8.33333%;
  551. }
  552. .col-xs-2 {
  553. width: 16.66667%;
  554. }
  555. .col-xs-3 {
  556. width: 25%;
  557. }
  558. .col-xs-4 {
  559. width: 33.33333%;
  560. }
  561. .col-xs-5 {
  562. width: 41.66667%;
  563. }
  564. .col-xs-6 {
  565. width: 50%;
  566. }
  567. .col-xs-7 {
  568. width: 58.33333%;
  569. }
  570. .col-xs-8 {
  571. width: 66.66667%;
  572. }
  573. .col-xs-9 {
  574. width: 75%;
  575. }
  576. .col-xs-10 {
  577. width: 83.33333%;
  578. }
  579. .col-xs-11 {
  580. width: 91.66667%;
  581. }
  582. .col-xs-12 {
  583. width: 100%;
  584. }
  585. .col-xs-pull-0 {
  586. right: auto;
  587. }
  588. .col-xs-pull-1 {
  589. right: 8.33333%;
  590. }
  591. .col-xs-pull-2 {
  592. right: 16.66667%;
  593. }
  594. .col-xs-pull-3 {
  595. right: 25%;
  596. }
  597. .col-xs-pull-4 {
  598. right: 33.33333%;
  599. }
  600. .col-xs-pull-5 {
  601. right: 41.66667%;
  602. }
  603. .col-xs-pull-6 {
  604. right: 50%;
  605. }
  606. .col-xs-pull-7 {
  607. right: 58.33333%;
  608. }
  609. .col-xs-pull-8 {
  610. right: 66.66667%;
  611. }
  612. .col-xs-pull-9 {
  613. right: 75%;
  614. }
  615. .col-xs-pull-10 {
  616. right: 83.33333%;
  617. }
  618. .col-xs-pull-11 {
  619. right: 91.66667%;
  620. }
  621. .col-xs-pull-12 {
  622. right: 100%;
  623. }
  624. .col-xs-push-0 {
  625. left: auto;
  626. }
  627. .col-xs-push-1 {
  628. left: 8.33333%;
  629. }
  630. .col-xs-push-2 {
  631. left: 16.66667%;
  632. }
  633. .col-xs-push-3 {
  634. left: 25%;
  635. }
  636. .col-xs-push-4 {
  637. left: 33.33333%;
  638. }
  639. .col-xs-push-5 {
  640. left: 41.66667%;
  641. }
  642. .col-xs-push-6 {
  643. left: 50%;
  644. }
  645. .col-xs-push-7 {
  646. left: 58.33333%;
  647. }
  648. .col-xs-push-8 {
  649. left: 66.66667%;
  650. }
  651. .col-xs-push-9 {
  652. left: 75%;
  653. }
  654. .col-xs-push-10 {
  655. left: 83.33333%;
  656. }
  657. .col-xs-push-11 {
  658. left: 91.66667%;
  659. }
  660. .col-xs-push-12 {
  661. left: 100%;
  662. }
  663. .col-xs-offset-0 {
  664. margin-left: 0%;
  665. }
  666. .col-xs-offset-1 {
  667. margin-left: 8.33333%;
  668. }
  669. .col-xs-offset-2 {
  670. margin-left: 16.66667%;
  671. }
  672. .col-xs-offset-3 {
  673. margin-left: 25%;
  674. }
  675. .col-xs-offset-4 {
  676. margin-left: 33.33333%;
  677. }
  678. .col-xs-offset-5 {
  679. margin-left: 41.66667%;
  680. }
  681. .col-xs-offset-6 {
  682. margin-left: 50%;
  683. }
  684. .col-xs-offset-7 {
  685. margin-left: 58.33333%;
  686. }
  687. .col-xs-offset-8 {
  688. margin-left: 66.66667%;
  689. }
  690. .col-xs-offset-9 {
  691. margin-left: 75%;
  692. }
  693. .col-xs-offset-10 {
  694. margin-left: 83.33333%;
  695. }
  696. .col-xs-offset-11 {
  697. margin-left: 91.66667%;
  698. }
  699. .col-xs-offset-12 {
  700. margin-left: 100%;
  701. }
  702. @media (min-width: 768px) {
  703. .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
  704. float: left;
  705. }
  706. .col-sm-1 {
  707. width: 8.33333%;
  708. }
  709. .col-sm-2 {
  710. width: 16.66667%;
  711. }
  712. .col-sm-3 {
  713. width: 25%;
  714. }
  715. .col-sm-4 {
  716. width: 33.33333%;
  717. }
  718. .col-sm-5 {
  719. width: 41.66667%;
  720. }
  721. .col-sm-6 {
  722. width: 50%;
  723. }
  724. .col-sm-7 {
  725. width: 58.33333%;
  726. }
  727. .col-sm-8 {
  728. width: 66.66667%;
  729. }
  730. .col-sm-9 {
  731. width: 75%;
  732. }
  733. .col-sm-10 {
  734. width: 83.33333%;
  735. }
  736. .col-sm-11 {
  737. width: 91.66667%;
  738. }
  739. .col-sm-12 {
  740. width: 100%;
  741. }
  742. .col-sm-pull-0 {
  743. right: auto;
  744. }
  745. .col-sm-pull-1 {
  746. right: 8.33333%;
  747. }
  748. .col-sm-pull-2 {
  749. right: 16.66667%;
  750. }
  751. .col-sm-pull-3 {
  752. right: 25%;
  753. }
  754. .col-sm-pull-4 {
  755. right: 33.33333%;
  756. }
  757. .col-sm-pull-5 {
  758. right: 41.66667%;
  759. }
  760. .col-sm-pull-6 {
  761. right: 50%;
  762. }
  763. .col-sm-pull-7 {
  764. right: 58.33333%;
  765. }
  766. .col-sm-pull-8 {
  767. right: 66.66667%;
  768. }
  769. .col-sm-pull-9 {
  770. right: 75%;
  771. }
  772. .col-sm-pull-10 {
  773. right: 83.33333%;
  774. }
  775. .col-sm-pull-11 {
  776. right: 91.66667%;
  777. }
  778. .col-sm-pull-12 {
  779. right: 100%;
  780. }
  781. .col-sm-push-0 {
  782. left: auto;
  783. }
  784. .col-sm-push-1 {
  785. left: 8.33333%;
  786. }
  787. .col-sm-push-2 {
  788. left: 16.66667%;
  789. }
  790. .col-sm-push-3 {
  791. left: 25%;
  792. }
  793. .col-sm-push-4 {
  794. left: 33.33333%;
  795. }
  796. .col-sm-push-5 {
  797. left: 41.66667%;
  798. }
  799. .col-sm-push-6 {
  800. left: 50%;
  801. }
  802. .col-sm-push-7 {
  803. left: 58.33333%;
  804. }
  805. .col-sm-push-8 {
  806. left: 66.66667%;
  807. }
  808. .col-sm-push-9 {
  809. left: 75%;
  810. }
  811. .col-sm-push-10 {
  812. left: 83.33333%;
  813. }
  814. .col-sm-push-11 {
  815. left: 91.66667%;
  816. }
  817. .col-sm-push-12 {
  818. left: 100%;
  819. }
  820. .col-sm-offset-0 {
  821. margin-left: 0%;
  822. }
  823. .col-sm-offset-1 {
  824. margin-left: 8.33333%;
  825. }
  826. .col-sm-offset-2 {
  827. margin-left: 16.66667%;
  828. }
  829. .col-sm-offset-3 {
  830. margin-left: 25%;
  831. }
  832. .col-sm-offset-4 {
  833. margin-left: 33.33333%;
  834. }
  835. .col-sm-offset-5 {
  836. margin-left: 41.66667%;
  837. }
  838. .col-sm-offset-6 {
  839. margin-left: 50%;
  840. }
  841. .col-sm-offset-7 {
  842. margin-left: 58.33333%;
  843. }
  844. .col-sm-offset-8 {
  845. margin-left: 66.66667%;
  846. }
  847. .col-sm-offset-9 {
  848. margin-left: 75%;
  849. }
  850. .col-sm-offset-10 {
  851. margin-left: 83.33333%;
  852. }
  853. .col-sm-offset-11 {
  854. margin-left: 91.66667%;
  855. }
  856. .col-sm-offset-12 {
  857. margin-left: 100%;
  858. }
  859. }
  860. @media (min-width: 992px) {
  861. .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
  862. float: left;
  863. }
  864. .col-md-1 {
  865. width: 8.33333%;
  866. }
  867. .col-md-2 {
  868. width: 16.66667%;
  869. }
  870. .col-md-3 {
  871. width: 25%;
  872. }
  873. .col-md-4 {
  874. width: 33.33333%;
  875. }
  876. .col-md-5 {
  877. width: 41.66667%;
  878. }
  879. .col-md-6 {
  880. width: 50%;
  881. }
  882. .col-md-7 {
  883. width: 58.33333%;
  884. }
  885. .col-md-8 {
  886. width: 66.66667%;
  887. }
  888. .col-md-9 {
  889. width: 75%;
  890. }
  891. .col-md-10 {
  892. width: 83.33333%;
  893. }
  894. .col-md-11 {
  895. width: 91.66667%;
  896. }
  897. .col-md-12 {
  898. width: 100%;
  899. }
  900. .col-md-pull-0 {
  901. right: auto;
  902. }
  903. .col-md-pull-1 {
  904. right: 8.33333%;
  905. }
  906. .col-md-pull-2 {
  907. right: 16.66667%;
  908. }
  909. .col-md-pull-3 {
  910. right: 25%;
  911. }
  912. .col-md-pull-4 {
  913. right: 33.33333%;
  914. }
  915. .col-md-pull-5 {
  916. right: 41.66667%;
  917. }
  918. .col-md-pull-6 {
  919. right: 50%;
  920. }
  921. .col-md-pull-7 {
  922. right: 58.33333%;
  923. }
  924. .col-md-pull-8 {
  925. right: 66.66667%;
  926. }
  927. .col-md-pull-9 {
  928. right: 75%;
  929. }
  930. .col-md-pull-10 {
  931. right: 83.33333%;
  932. }
  933. .col-md-pull-11 {
  934. right: 91.66667%;
  935. }
  936. .col-md-pull-12 {
  937. right: 100%;
  938. }
  939. .col-md-push-0 {
  940. left: auto;
  941. }
  942. .col-md-push-1 {
  943. left: 8.33333%;
  944. }
  945. .col-md-push-2 {
  946. left: 16.66667%;
  947. }
  948. .col-md-push-3 {
  949. left: 25%;
  950. }
  951. .col-md-push-4 {
  952. left: 33.33333%;
  953. }
  954. .col-md-push-5 {
  955. left: 41.66667%;
  956. }
  957. .col-md-push-6 {
  958. left: 50%;
  959. }
  960. .col-md-push-7 {
  961. left: 58.33333%;
  962. }
  963. .col-md-push-8 {
  964. left: 66.66667%;
  965. }
  966. .col-md-push-9 {
  967. left: 75%;
  968. }
  969. .col-md-push-10 {
  970. left: 83.33333%;
  971. }
  972. .col-md-push-11 {
  973. left: 91.66667%;
  974. }
  975. .col-md-push-12 {
  976. left: 100%;
  977. }
  978. .col-md-offset-0 {
  979. margin-left: 0%;
  980. }
  981. .col-md-offset-1 {
  982. margin-left: 8.33333%;
  983. }
  984. .col-md-offset-2 {
  985. margin-left: 16.66667%;
  986. }
  987. .col-md-offset-3 {
  988. margin-left: 25%;
  989. }
  990. .col-md-offset-4 {
  991. margin-left: 33.33333%;
  992. }
  993. .col-md-offset-5 {
  994. margin-left: 41.66667%;
  995. }
  996. .col-md-offset-6 {
  997. margin-left: 50%;
  998. }
  999. .col-md-offset-7 {
  1000. margin-left: 58.33333%;
  1001. }
  1002. .col-md-offset-8 {
  1003. margin-left: 66.66667%;
  1004. }
  1005. .col-md-offset-9 {
  1006. margin-left: 75%;
  1007. }
  1008. .col-md-offset-10 {
  1009. margin-left: 83.33333%;
  1010. }
  1011. .col-md-offset-11 {
  1012. margin-left: 91.66667%;
  1013. }
  1014. .col-md-offset-12 {
  1015. margin-left: 100%;
  1016. }
  1017. }
  1018. @media (min-width: 1200px) {
  1019. .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  1020. float: left;
  1021. }
  1022. .col-lg-1 {
  1023. width: 8.33333%;
  1024. }
  1025. .col-lg-2 {
  1026. width: 16.66667%;
  1027. }
  1028. .col-lg-3 {
  1029. width: 25%;
  1030. }
  1031. .col-lg-4 {
  1032. width: 33.33333%;
  1033. }
  1034. .col-lg-5 {
  1035. width: 41.66667%;
  1036. }
  1037. .col-lg-6 {
  1038. width: 50%;
  1039. }
  1040. .col-lg-7 {
  1041. width: 58.33333%;
  1042. }
  1043. .col-lg-8 {
  1044. width: 66.66667%;
  1045. }
  1046. .col-lg-9 {
  1047. width: 75%;
  1048. }
  1049. .col-lg-10 {
  1050. width: 83.33333%;
  1051. }
  1052. .col-lg-11 {
  1053. width: 91.66667%;
  1054. }
  1055. .col-lg-12 {
  1056. width: 100%;
  1057. }
  1058. .col-lg-pull-0 {
  1059. right: auto;
  1060. }
  1061. .col-lg-pull-1 {
  1062. right: 8.33333%;
  1063. }
  1064. .col-lg-pull-2 {
  1065. right: 16.66667%;
  1066. }
  1067. .col-lg-pull-3 {
  1068. right: 25%;
  1069. }
  1070. .col-lg-pull-4 {
  1071. right: 33.33333%;
  1072. }
  1073. .col-lg-pull-5 {
  1074. right: 41.66667%;
  1075. }
  1076. .col-lg-pull-6 {
  1077. right: 50%;
  1078. }
  1079. .col-lg-pull-7 {
  1080. right: 58.33333%;
  1081. }
  1082. .col-lg-pull-8 {
  1083. right: 66.66667%;
  1084. }
  1085. .col-lg-pull-9 {
  1086. right: 75%;
  1087. }
  1088. .col-lg-pull-10 {
  1089. right: 83.33333%;
  1090. }
  1091. .col-lg-pull-11 {
  1092. right: 91.66667%;
  1093. }
  1094. .col-lg-pull-12 {
  1095. right: 100%;
  1096. }
  1097. .col-lg-push-0 {
  1098. left: auto;
  1099. }
  1100. .col-lg-push-1 {
  1101. left: 8.33333%;
  1102. }
  1103. .col-lg-push-2 {
  1104. left: 16.66667%;
  1105. }
  1106. .col-lg-push-3 {
  1107. left: 25%;
  1108. }
  1109. .col-lg-push-4 {
  1110. left: 33.33333%;
  1111. }
  1112. .col-lg-push-5 {
  1113. left: 41.66667%;
  1114. }
  1115. .col-lg-push-6 {
  1116. left: 50%;
  1117. }
  1118. .col-lg-push-7 {
  1119. left: 58.33333%;
  1120. }
  1121. .col-lg-push-8 {
  1122. left: 66.66667%;
  1123. }
  1124. .col-lg-push-9 {
  1125. left: 75%;
  1126. }
  1127. .col-lg-push-10 {
  1128. left: 83.33333%;
  1129. }
  1130. .col-lg-push-11 {
  1131. left: 91.66667%;
  1132. }
  1133. .col-lg-push-12 {
  1134. left: 100%;
  1135. }
  1136. .col-lg-offset-0 {
  1137. margin-left: 0%;
  1138. }
  1139. .col-lg-offset-1 {
  1140. margin-left: 8.33333%;
  1141. }
  1142. .col-lg-offset-2 {
  1143. margin-left: 16.66667%;
  1144. }
  1145. .col-lg-offset-3 {
  1146. margin-left: 25%;
  1147. }
  1148. .col-lg-offset-4 {
  1149. margin-left: 33.33333%;
  1150. }
  1151. .col-lg-offset-5 {
  1152. margin-left: 41.66667%;
  1153. }
  1154. .col-lg-offset-6 {
  1155. margin-left: 50%;
  1156. }
  1157. .col-lg-offset-7 {
  1158. margin-left: 58.33333%;
  1159. }
  1160. .col-lg-offset-8 {
  1161. margin-left: 66.66667%;
  1162. }
  1163. .col-lg-offset-9 {
  1164. margin-left: 75%;
  1165. }
  1166. .col-lg-offset-10 {
  1167. margin-left: 83.33333%;
  1168. }
  1169. .col-lg-offset-11 {
  1170. margin-left: 91.66667%;
  1171. }
  1172. .col-lg-offset-12 {
  1173. margin-left: 100%;
  1174. }
  1175. }
  1176. .sidebar {
  1177. width: 14rem;
  1178. visibility: hidden;
  1179. padding: 30px 20px;
  1180. font-family: "Roboto", sans-serif;
  1181. font-size: 1rem;
  1182. background-color: #222222;
  1183. z-index: 900;
  1184. overflow-x: hidden;
  1185. overflow-y: scroll;
  1186. -webkit-transition: all .3s ease-in-out;
  1187. transition: all .3s ease-in-out;
  1188. -moz-user-select: -moz-none;
  1189. -webkit-user-select: none;
  1190. -ms-user-select: none;
  1191. user-select: none;
  1192. -webkit-overflow-scrolling: touch !important;
  1193. }
  1194. .sidebar::-webkit-scrollbar {
  1195. width: 12px;
  1196. }
  1197. .sidebar::-webkit-scrollbar-track {
  1198. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  1199. border-radius: 10px;
  1200. }
  1201. .sidebar::-webkit-scrollbar-thumb {
  1202. border-radius: 10px;
  1203. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  1204. }
  1205. .sidebar--left {
  1206. position: fixed;
  1207. top: 0;
  1208. bottom: 0;
  1209. left: -14rem;
  1210. }
  1211. .sidebar--right {
  1212. position: fixed;
  1213. top: 0;
  1214. bottom: 0;
  1215. right: -14rem;
  1216. }
  1217. .postWrapper,
  1218. .sidebar,
  1219. .sidebar-toggle {
  1220. -webkit-backface-visibility: hidden;
  1221. -ms-backface-visibility: hidden;
  1222. backface-visibility: hidden;
  1223. }
  1224. .sidebar-checkbox {
  1225. display: none;
  1226. }
  1227. .sidebar-toggle-wrapper {
  1228. position: fixed;
  1229. z-index: 500;
  1230. top: 30px;
  1231. right: 3%;
  1232. width: 44px;
  1233. height: 44px;
  1234. overflow: hidden;
  1235. text-indent: 100%;
  1236. white-space: nowrap;
  1237. cursor: pointer;
  1238. border-radius: 99px;
  1239. background-color: #fff;
  1240. }
  1241. .sidebar-toggle-wrapper:hover .sidebar-toggle {
  1242. background-color: #666;
  1243. }
  1244. .sidebar-toggle {
  1245. position: absolute;
  1246. z-index: 600;
  1247. top: 48%;
  1248. left: 50%;
  1249. margin-left: -10px;
  1250. display: block;
  1251. width: 20px;
  1252. height: 2px;
  1253. background: #222;
  1254. /* background-color: transparent;
  1255. border-radius: 4px; */
  1256. -webkit-transition: background 0.3s;
  1257. transition: background 0.3s;
  1258. }
  1259. .sidebar-toggle:before, .sidebar-toggle:after {
  1260. content: '';
  1261. position: absolute;
  1262. left: 0;
  1263. background: inherit;
  1264. width: 100%;
  1265. height: 100%;
  1266. -webkit-transform: translateZ(0);
  1267. -ms-transform: translateZ(0);
  1268. transform: translateZ(0);
  1269. -webkit-backface-visibility: hidden;
  1270. backface-visibility: hidden;
  1271. -webkit-transition: -webkit-transform 0.5s, background 0s;
  1272. transition: transform 0.5s, background 0s;
  1273. }
  1274. .sidebar-toggle:before {
  1275. top: -6px;
  1276. -webkit-transform: rotate(0);
  1277. -ms-transform: rotate(0);
  1278. transform: rotate(0);
  1279. }
  1280. .sidebar-toggle:after {
  1281. bottom: -6px;
  1282. -webkit-transform: rotate(0);
  1283. -ms-transform: rotate(0);
  1284. transform: rotate(0);
  1285. }
  1286. /* .sidebar-toggle--black {
  1287. background: $black;
  1288. } */
  1289. /* #sidebar-checkbox:checked ~ .postWrapper, */
  1290. #sidebar-checkbox:checked ~ .sidebar,
  1291. #sidebar-checkbox:checked ~ .sidebar-toggle-wrapper {
  1292. -webkit-transform: translateX(-14rem);
  1293. -ms-transform: translateX(-14rem);
  1294. transform: translateX(-14rem);
  1295. }
  1296. .sidebar-toggle:active,
  1297. #sidebar-checkbox:checked ~ .sidebar-toggle-wrapper {
  1298. position: fixed;
  1299. background-color: rgba(34, 34, 34, 0.8);
  1300. }
  1301. #sidebar-checkbox:checked ~ .sidebar-toggle-wrapper .sidebar-toggle {
  1302. background: transparent;
  1303. }
  1304. #sidebar-checkbox:checked ~ .sidebar-toggle-wrapper .sidebar-toggle:before, #sidebar-checkbox:checked ~ .sidebar-toggle-wrapper .sidebar-toggle:after {
  1305. background: #fff;
  1306. }
  1307. #sidebar-checkbox:checked ~ .sidebar-toggle-wrapper .sidebar-toggle:before {
  1308. top: 0;
  1309. -webkit-transform: rotate(135deg);
  1310. -ms-transform: rotate(135deg);
  1311. transform: rotate(135deg);
  1312. }
  1313. #sidebar-checkbox:checked ~ .sidebar-toggle-wrapper .sidebar-toggle:after {
  1314. bottom: 0;
  1315. -webkit-transform: rotate(225deg);
  1316. -ms-transform: rotate(225deg);
  1317. transform: rotate(225deg);
  1318. }
  1319. #sidebar-checkbox:checked ~ .sidebar {
  1320. visibility: visible;
  1321. }
  1322. .postWrapper,
  1323. .sidebar-toggle-wrapper {
  1324. -webkit-transition: -webkit-transform .3s ease-in-out;
  1325. transition: transform .3s ease-in-out;
  1326. }
  1327. .sidebar-recentPosts {
  1328. list-style: none;
  1329. margin: 1.5rem 0 0;
  1330. padding: 0;
  1331. font-size: 0.75rem;
  1332. }
  1333. .sidebar-recentPosts a,
  1334. .sidebar-recentPosts a:hover {
  1335. text-decoration: none;
  1336. background-image: none;
  1337. }
  1338. .sidebar-recentPosts a {
  1339. display: block;
  1340. letter-spacing: 0.05rem;
  1341. font-weight: 700;
  1342. line-height: 1.5;
  1343. color: rgba(255, 255, 255, 0.8);
  1344. }
  1345. .sidebar-recentPosts a:hover {
  1346. color: white;
  1347. }
  1348. .sidebar-recentPosts li {
  1349. list-style: none;
  1350. margin-bottom: 1.5rem;
  1351. }
  1352. .sidebar-recentPosts .postMeta {
  1353. font-size: 0.75rem;
  1354. color: rgba(255, 255, 255, 0.4);
  1355. }
  1356. .sidebar-recentPosts-image-wrapper {
  1357. display: block;
  1358. width: 100%;
  1359. height: 4.5rem;
  1360. background: #333;
  1361. overflow: hidden;
  1362. margin-bottom: 15px;
  1363. }
  1364. .sidebar-recentPosts-image-wrapper img {
  1365. min-height: 4.5rem;
  1366. width: 150%;
  1367. height: auto;
  1368. position: relative;
  1369. left: 50%;
  1370. -webkit-transform: translateX(-50%);
  1371. -ms-transform: translateX(-50%);
  1372. transform: translateX(-50%);
  1373. }
  1374. .menuWrapper {
  1375. position: absolute;
  1376. z-index: 500;
  1377. top: 30px;
  1378. left: 3%;
  1379. }
  1380. .menuWrapper ul {
  1381. list-style: none;
  1382. position: relative;
  1383. float: left;
  1384. margin: 0;
  1385. padding: 0;
  1386. }
  1387. .menuWrapper ul li {
  1388. position: relative;
  1389. float: left;
  1390. list-style: none;
  1391. margin: 0;
  1392. padding: 0;
  1393. }
  1394. .menuWrapper ul a {
  1395. display: block;
  1396. color: #333;
  1397. text-decoration: none;
  1398. padding: 0 15px;
  1399. }
  1400. .menuWrapper ul ul {
  1401. display: none;
  1402. position: absolute;
  1403. top: 100%;
  1404. left: 0;
  1405. background: #fff;
  1406. padding: 0;
  1407. }
  1408. .menuWrapper ul li:hover {
  1409. opacity: 0.8;
  1410. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  1411. }
  1412. .menuWrapper ul li:hover > ul {
  1413. display: block;
  1414. }
  1415. .list--avatarMenu .list-item {
  1416. float: none;
  1417. width: 200px;
  1418. }
  1419. .list--avatarMenu a {
  1420. padding: 10px 15px;
  1421. }
  1422. .section--first {
  1423. width: 100%;
  1424. top: 0;
  1425. position: relative;
  1426. color: #222;
  1427. }
  1428. .section--first,
  1429. .section-backgroundImage {
  1430. height: 28.5rem;
  1431. }
  1432. @media (max-width: 767px) {
  1433. .section--first,
  1434. .section-backgroundImage {
  1435. height: 21rem;
  1436. }
  1437. }
  1438. .section--frontpage,
  1439. .section--frontpage ~ .post-featuredImage {
  1440. height: 18rem;
  1441. }
  1442. @media (max-width: 767px) {
  1443. .section--frontpage,
  1444. .section--frontpage ~ .post-featuredImage {
  1445. height: 7.5rem;
  1446. }
  1447. }
  1448. .section--about,
  1449. .section-backgroundImage,
  1450. .section--about ~ .post-featuredImage {
  1451. height: 36rem;
  1452. }
  1453. @media (max-width: 767px) {
  1454. .section--about,
  1455. .section-backgroundImage,
  1456. .section--about ~ .post-featuredImage {
  1457. height: 30rem;
  1458. }
  1459. }
  1460. .section-backgroundImage {
  1461. position: absolute;
  1462. display: block;
  1463. width: 100%;
  1464. background: #333;
  1465. top: 0;
  1466. z-index: -200;
  1467. overflow: hidden;
  1468. }
  1469. .section-backgroundImage .post-featuredImage {
  1470. min-width: 100%;
  1471. min-height: 28.5rem;
  1472. width: 2000px;
  1473. height: auto;
  1474. position: fixed;
  1475. left: 50%;
  1476. -webkit-transform: translateX(-50%);
  1477. -ms-transform: translateX(-50%);
  1478. transform: translateX(-50%);
  1479. opacity: 0;
  1480. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  1481. -webkit-transition-property: opacity, left, top, width;
  1482. -webkit-transition-duration: 1s, .1s, .1s, .1s;
  1483. -webkit-transition-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
  1484. -webkit-transition-delay: 0;
  1485. -moz-transition-property: opacity, left, top, width;
  1486. -moz-transition-duration: 1s, .1s, .1s, .1s;
  1487. -moz-transition-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
  1488. -moz-transition-delay: 0;
  1489. -ms-transition-property: opacity, left, top, width;
  1490. -ms-transition-duration: 1s, .1s, .1s, .1s;
  1491. -ms-transition-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
  1492. -ms-transition-delay: 0;
  1493. -o-transition-property: opacity, left, top, width;
  1494. -o-transition-duration: 1s, .1s, .1s, .1s;
  1495. -o-transition-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
  1496. -o-transition-delay: 0;
  1497. -webkit-transition-property: opacity, left, top, width;
  1498. transition-property: opacity, left, top, width;
  1499. -webkit-transition-duration: 1s, .1s, .1s, .1s;
  1500. transition-duration: 1s, .1s, .1s, .1s;
  1501. -webkit-transition-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
  1502. transition-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
  1503. -transition-delay: 0;
  1504. }
  1505. .section-backgroundImage .post-featuredImage.is-loaded {
  1506. opacity: 1;
  1507. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  1508. }
  1509. .section-backgroundImage--previousPage img {
  1510. position: relative;
  1511. }
  1512. .section-gradient:before, .section-gradient:after {
  1513. content: '';
  1514. height: 100%;
  1515. width: 100%;
  1516. top: 0;
  1517. left: 0;
  1518. position: absolute;
  1519. z-index: -100;
  1520. opacity: 0.6;
  1521. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  1522. }
  1523. .section-gradient:before {
  1524. background: -webkit-gradient(linear, left top, left bottom, from(rgba(51, 51, 51, 0.8)), to(rgba(51, 51, 51, 0)));
  1525. background: linear-gradient(to bottom, rgba(51, 51, 51, 0.8), rgba(51, 51, 51, 0) 100%);
  1526. }
  1527. .section-gradient:after {
  1528. background: rgba(51, 51, 51, 0.6);
  1529. }
  1530. .section-gradient--darker:before, .section-gradient--darker:after {
  1531. opacity: 1;
  1532. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  1533. }
  1534. .section-gradient--lighter:before, .section-gradient--lighter:after {
  1535. opacity: 0.4;
  1536. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  1537. }
  1538. .section-title {
  1539. z-index: 100;
  1540. text-align: center;
  1541. }
  1542. .section-title h2,
  1543. .section-title h4 {
  1544. margin-top: 0;
  1545. }
  1546. @media (max-width: 767px) {
  1547. .section-title h2 {
  1548. font-size: 1.777rem;
  1549. line-height: 1.5;
  1550. }
  1551. }
  1552. .postMeta-wrapper {
  1553. margin-top: 1.5rem;
  1554. display: inline-block;
  1555. }
  1556. .postMeta-wrapper--frontpage {
  1557. position: absolute;
  1558. display: inherit;
  1559. top: 165px;
  1560. left: 50%;
  1561. -webkit-transform: translateX(-50%);
  1562. -ms-transform: translateX(-50%);
  1563. transform: translateX(-50%);
  1564. z-index: 500;
  1565. }
  1566. .postMeta-wrapper--frontpage .postMeta-tagline {
  1567. font-weight: 300;
  1568. letter-spacing: 0.04rem;
  1569. color: #777777;
  1570. text-transform: none;
  1571. line-height: 0.5rem;
  1572. }
  1573. @media (max-width: 767px) {
  1574. .postMeta-wrapper--frontpage .postMeta-tagline {
  1575. width: 100%;
  1576. }
  1577. }
  1578. @media (max-width: 767px) {
  1579. .postMeta-wrapper--frontpage {
  1580. width: 300px;
  1581. top: 160px;
  1582. }
  1583. }
  1584. .postMeta {
  1585. list-style: none;
  1586. margin: 0;
  1587. padding: 0;
  1588. }
  1589. .postMeta li {
  1590. float: left;
  1591. margin: 0;
  1592. padding: 0 0 0 10px;
  1593. font-family: "Roboto", sans-serif;
  1594. font-weight: 700;
  1595. font-size: 0.75rem;
  1596. text-transform: uppercase;
  1597. letter-spacing: 2px;
  1598. }
  1599. .postMeta li:after {
  1600. content: '';
  1601. display: inline-block;
  1602. width: 4px;
  1603. height: 4px;
  1604. overflow: hidden;
  1605. margin-left: 4px;
  1606. border-radius: 100%;
  1607. margin-bottom: 2px;
  1608. background-color: rgba(255, 255, 255, 0.6);
  1609. }
  1610. .postMeta li:last-child:after {
  1611. display: none;
  1612. }
  1613. .postMeta li:first-child {
  1614. padding-left: 0;
  1615. }
  1616. @media (max-width: 767px) {
  1617. .postMeta li {
  1618. font-size: 0.563rem;
  1619. }
  1620. }
  1621. .postWrapper {
  1622. position: relative;
  1623. width: 100%;
  1624. z-index: 400;
  1625. -webkit-transition: padding 100ms cubic-bezier(0.565, 1, 0.765, 0.88);
  1626. -webkit-transition: padding 100ms cubic-bezier(0.565, 1.65, 0.765, 0.88);
  1627. transition: padding 100ms cubic-bezier(0.565, 1.65, 0.765, 0.88);
  1628. }
  1629. @media (max-width: 767px) {
  1630. .postWrapper {
  1631. overflow-y: hidden;
  1632. }
  1633. }
  1634. .meta {
  1635. margin-bottom: 3rem;
  1636. }
  1637. .section--postsWrapper {
  1638. width: 100%;
  1639. background: #f2f2f2;
  1640. padding-top: 0;
  1641. position: relative;
  1642. clear: both;
  1643. z-index: 400;
  1644. }
  1645. .blockGroup {
  1646. margin: 0;
  1647. padding: 0;
  1648. }
  1649. .blockGroup-list {
  1650. list-style: none;
  1651. padding: 0;
  1652. margin-top: -4.5rem;
  1653. margin-left: -10px;
  1654. margin-right: -10px;
  1655. display: -webkit-box;
  1656. display: -webkit-flex;
  1657. display: -ms-flexbox;
  1658. display: flex;
  1659. -webkit-flex-wrap: wrap;
  1660. -ms-flex-wrap: wrap;
  1661. flex-wrap: wrap;
  1662. -webkit-box-align: stretch;
  1663. -webkit-align-items: stretch;
  1664. -ms-flex-align: stretch;
  1665. align-items: stretch;
  1666. clear: both;
  1667. }
  1668. .blockGroup-list li {
  1669. padding: 0 10px;
  1670. }
  1671. .blockGroup-list .block {
  1672. display: block;
  1673. width: 25%;
  1674. margin-bottom: 1.5rem;
  1675. font-family: "Roboto", sans-serif;
  1676. display: -webkit-flex;
  1677. display: -ms-flexbox;
  1678. display: -webkit-box;
  1679. display: flex;
  1680. }
  1681. @media (max-width: 767px) {
  1682. .blockGroup-list .block {
  1683. width: 100%;
  1684. }
  1685. }
  1686. .blockGroup-list li:nth-child(1).block {
  1687. width: 100%;
  1688. }
  1689. .blockGroup-list li:nth-child(1).block .postArticle-image {
  1690. padding-top: 30%;
  1691. }
  1692. @media (max-width: 767px) {
  1693. .blockGroup-list li:nth-child(1).block .postArticle-image {
  1694. padding-top: 50%;
  1695. }
  1696. }
  1697. .blockGroup-list li:nth-child(1).block .postArticle-title {
  1698. font-size: 1rem;
  1699. }
  1700. .blockGroup-list li:nth-child(2).block,
  1701. .blockGroup-list li:nth-child(3).block {
  1702. width: 50%;
  1703. }
  1704. .blockGroup-list li:nth-child(2).block .postArticle-image,
  1705. .blockGroup-list li:nth-child(3).block .postArticle-image {
  1706. padding-top: 50%;
  1707. }
  1708. .blockGroup-list li:nth-child(2).block .postArticle-title,
  1709. .blockGroup-list li:nth-child(3).block .postArticle-title {
  1710. font-size: 1rem;
  1711. }
  1712. @media (max-width: 767px) {
  1713. .blockGroup-list li:nth-child(2).block,
  1714. .blockGroup-list li:nth-child(3).block {
  1715. width: 100%;
  1716. }
  1717. }
  1718. .blockGroup-list li .postArticle-title {
  1719. font-size: 0.75rem;
  1720. line-height: 1.5;
  1721. }
  1722. .blockGroup-list .postArticle-wrapper {
  1723. position: relative;
  1724. background: #fff;
  1725. width: 100%;
  1726. padding-bottom: 3rem;
  1727. -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  1728. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  1729. }
  1730. .blockGroup-list .postArticle-wrapper:hover {
  1731. -webkit-transition: -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  1732. transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  1733. -webkit-box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.2);
  1734. box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.2);
  1735. }
  1736. .blockGroup-list .postArticle a {
  1737. color: #222;
  1738. background: transparent;
  1739. }
  1740. .blockGroup-list .postArticle-title {
  1741. display: block;
  1742. margin-top: 0.75rem;
  1743. font-weight: 300;
  1744. }
  1745. .blockGroup-list .postArticle-image {
  1746. background-size: cover;
  1747. background-position: center;
  1748. padding-top: 100%;
  1749. -webkit-transition-property: all, left, top, width;
  1750. -webkit-transition-duration: .5s, .1s, .1s, .1s;
  1751. -webkit-transition-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
  1752. -webkit-transition-delay: 0;
  1753. -moz-transition-property: all, left, top, width;
  1754. -moz-transition-duration: .5s, .1s, .1s, .1s;
  1755. -moz-transition-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
  1756. -moz-transition-delay: 0;
  1757. -ms-transition-property: all, left, top, width;
  1758. -ms-transition-duration: .5s, .1s, .1s, .1s;
  1759. -ms-transition-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
  1760. -ms-transition-delay: 0;
  1761. -o-transition-property: all, left, top, width;
  1762. -o-transition-duration: .5s, .1s, .1s, .1s;
  1763. -o-transition-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
  1764. -o-transition-delay: 0;
  1765. -webkit-transition-property: all, left, top, width;
  1766. transition-property: all, left, top, width;
  1767. -webkit-transition-duration: .5s, .1s, .1s, .1s;
  1768. transition-duration: .5s, .1s, .1s, .1s;
  1769. -webkit-transition-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
  1770. transition-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
  1771. }
  1772. @media (max-width: 767px) {
  1773. .blockGroup-list .postArticle-image {
  1774. padding-top: 50%;
  1775. }
  1776. }
  1777. .blockGroup-list .block-postMeta {
  1778. position: absolute;
  1779. bottom: 0;
  1780. padding-bottom: 10px;
  1781. color: #ccc;
  1782. font-size: 16px;
  1783. text-transform: uppercase;
  1784. }
  1785. .blockGroup-list .postArticle-title,
  1786. .blockGroup-list .block-postMeta {
  1787. padding-left: 15px;
  1788. padding-right: 15px;
  1789. }
  1790. .desaturate {
  1791. opacity: 0.8;
  1792. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  1793. -moz-filter: contrast(1.5) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  1794. -webkit-filter: contrast(1.5) grayscale(100%);
  1795. filter: gray;
  1796. filter: contrast(1.5) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  1797. }
  1798. .block:hover .desaturate {
  1799. -webkit-filter: none;
  1800. filter: none;
  1801. }
  1802. .section--subscribe {
  1803. width: 100%;
  1804. background: #fff;
  1805. padding: 1.5rem 0 0;
  1806. position: relative;
  1807. z-index: 400;
  1808. }
  1809. .section--subscribe h3 {
  1810. margin-top: 1.5rem;
  1811. }
  1812. .newsletterForm-wrapper {
  1813. padding: 1.5rem 0;
  1814. }
  1815. .section--footer {
  1816. width: 100%;
  1817. background: #fff;
  1818. padding: 1.5rem 0 3rem;
  1819. position: relative;
  1820. z-index: 400;
  1821. font-family: "Roboto", sans-serif;
  1822. font-size: 0.75rem;
  1823. text-align: center;
  1824. }
  1825. .section--footer a:not(.socialAccount) {
  1826. background-position: 0 16px;
  1827. }
  1828. .socialAccountList {
  1829. list-style: none;
  1830. margin: 1.5rem auto;
  1831. padding-left: 0;
  1832. width: 50%;
  1833. }
  1834. .socialAccountList:before, .socialAccountList:after {
  1835. content: " ";
  1836. display: table;
  1837. }
  1838. .socialAccountList:after {
  1839. clear: both;
  1840. }
  1841. .socialAccount {
  1842. display: block;
  1843. float: left;
  1844. margin: 0;
  1845. padding: 0 15px;
  1846. width: 14.2%;
  1847. height: 25px;
  1848. text-decoration: none;
  1849. background-repeat: no-repeat;
  1850. background-position: center center;
  1851. background-size: contain;
  1852. opacity: 0.8;
  1853. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  1854. }
  1855. .socialAccount:hover {
  1856. opacity: 1;
  1857. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  1858. }
  1859. .socialAccount--twitter {
  1860. background-image: url(../images/twitter--black.svg);
  1861. }
  1862. .socialAccount--facebook {
  1863. background-image: url(../images/facebook--black.svg);
  1864. }
  1865. .socialAccount--linkedin {
  1866. background-image: url(../images/linkedin--black.svg);
  1867. }
  1868. .socialAccount--dribbble {
  1869. background-image: url(../images/dribbble--black.svg);
  1870. }
  1871. .socialAccount--pinterest {
  1872. background-image: url(../images/pinterest--black.svg);
  1873. }
  1874. .socialAccount--kiva {
  1875. background-image: url(../images/kiva--black.svg);
  1876. }
  1877. .socialAccount--rss {
  1878. background-image: url(../images/rss--black.svg);
  1879. }
  1880. .socialAccount--github {
  1881. background-image: url(../images/github--black.svg);
  1882. }
  1883. .socialAccount--youtube {
  1884. background-image: url(../images/youtube--black.svg);
  1885. }
  1886. .socialAccount--vimeo {
  1887. background-image: url(../images/vimeo--black.svg);
  1888. }
  1889. .section--last {
  1890. position: relative;
  1891. clear: both;
  1892. padding: 1.5rem 0 6rem;
  1893. background: #fff;
  1894. }
  1895. .content-author {
  1896. border-top: 1px solid #eeeeee;
  1897. margin-top: 3rem;
  1898. padding-top: 1.5rem;
  1899. }
  1900. .content-comments {
  1901. margin-top: 3rem;
  1902. }
  1903. .postFooter {
  1904. text-align: center;
  1905. }
  1906. .section--prePost {
  1907. width: 100%;
  1908. top: 0;
  1909. position: relative;
  1910. }
  1911. .section--prePost .section-title a {
  1912. background: transparent;
  1913. color: rgba(255, 255, 255, 0.9);
  1914. }
  1915. .section--prePost .section-title a:hover {
  1916. color: white;
  1917. }
  1918. .section--prePost .section-title h2 {
  1919. margin: 1.5rem auto 0;
  1920. display: inline-block;
  1921. }
  1922. .section--prePost,
  1923. .section--prePost .section-backgroundImage {
  1924. height: 16.5rem;
  1925. }
  1926. .section--prePost .section-backgroundImage img {
  1927. min-height: 16.5rem;
  1928. position: relative !important;
  1929. top: 0;
  1930. }
  1931. .fullscreenModal {
  1932. position: fixed;
  1933. top: 0;
  1934. left: 50%;
  1935. -webkit-transform: translateX(-50%);
  1936. -ms-transform: translateX(-50%);
  1937. transform: translateX(-50%);
  1938. width: 80%;
  1939. height: 100%;
  1940. color: #fff;
  1941. text-align: center;
  1942. opacity: 0;
  1943. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  1944. visibility: hidden;
  1945. background: transparent;
  1946. -webkit-transition-delay: 0.5s;
  1947. transition-delay: 0.5s;
  1948. -webkit-transition: opacity 0.3s ease-in;
  1949. transition: opacity 0.3s ease-in;
  1950. z-index: 800;
  1951. }
  1952. .fullscreenModal.active {
  1953. opacity: 1;
  1954. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  1955. visibility: visible;
  1956. -webkit-transition-delay: 0.5s;
  1957. transition-delay: 0.5s;
  1958. }
  1959. .fullscreenModal h2 {
  1960. font-size: 1.333rem;
  1961. }
  1962. .modal-toggle-group {
  1963. position: fixed;
  1964. display: block;
  1965. bottom: 30px;
  1966. right: 3%;
  1967. opacity: 0;
  1968. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  1969. visibility: hidden;
  1970. -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  1971. transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  1972. z-index: 700;
  1973. }
  1974. .modal-toggle-group.active {
  1975. opacity: 1;
  1976. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  1977. visibility: visible;
  1978. }
  1979. .modal-toggle-group.active.scaleIn {
  1980. -webkit-transform: scale(1);
  1981. -ms-transform: scale(1);
  1982. transform: scale(1);
  1983. }
  1984. .modal-toggle-group,
  1985. .modal-toggle-wrapper,
  1986. .modal-toggle-close-wrapper,
  1987. .modal-toggle-bubble,
  1988. .modal-toggle-bubbleShadow {
  1989. height: 44px;
  1990. width: 44px;
  1991. border-radius: 50%;
  1992. }
  1993. .modal-toggle-wrapper {
  1994. position: absolute;
  1995. top: 0;
  1996. display: block;
  1997. background-image: url(../images/heart.svg);
  1998. background-repeat: no-repeat;
  1999. background-position: center center;
  2000. background-size: 60%;
  2001. background-color: transparent;
  2002. cursor: pointer;
  2003. -webkit-transform: scale(1);
  2004. -webkit-transition: all 0.3s ease-out;
  2005. z-index: 700;
  2006. }
  2007. .modal-toggle-wrapper.active {
  2008. opacity: 0;
  2009. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  2010. -webkit-transform: rotate(360deg);
  2011. -ms-transform: rotate(360deg);
  2012. transform: rotate(360deg);
  2013. }
  2014. .modal-toggle-close-wrapper {
  2015. position: absolute;
  2016. top: 0;
  2017. z-index: 600;
  2018. opacity: 0;
  2019. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  2020. -webkit-transition: opacity 0.3s;
  2021. transition: opacity 0.3s;
  2022. }
  2023. .modal-toggle-close-wrapper .modal-toggle-close {
  2024. position: absolute;
  2025. top: 48%;
  2026. left: 15%;
  2027. display: block;
  2028. width: 30px;
  2029. height: 2px;
  2030. background: transparent;
  2031. -webkit-transition: background 0.3s;
  2032. transition: background 0.3s;
  2033. z-index: inherit;
  2034. }
  2035. .modal-toggle-close-wrapper .modal-toggle-close:before, .modal-toggle-close-wrapper .modal-toggle-close:after {
  2036. content: '';
  2037. position: absolute;
  2038. left: 0;
  2039. background: inherit;
  2040. width: 100%;
  2041. height: 100%;
  2042. -webkit-transform: translateZ(0);
  2043. -ms-transform: translateZ(0);
  2044. transform: translateZ(0);
  2045. -webkit-backface-visibility: hidden;
  2046. backface-visibility: hidden;
  2047. -webkit-transition: -webkit-transform 0.5s, background 0s;
  2048. transition: transform 0.5s, background 0s;
  2049. }
  2050. .modal-toggle-close-wrapper .modal-toggle-close:before {
  2051. top: -6px;
  2052. -webkit-transform: rotate(0);
  2053. -ms-transform: rotate(0);
  2054. transform: rotate(0);
  2055. }
  2056. .modal-toggle-close-wrapper .modal-toggle-close:after {
  2057. bottom: -6px;
  2058. -webkit-transform: rotate(0);
  2059. -ms-transform: rotate(0);
  2060. transform: rotate(0);
  2061. }
  2062. .modal-toggle-close-wrapper.active {
  2063. opacity: 1;
  2064. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  2065. z-index: 600;
  2066. }
  2067. .modal-toggle-close-wrapper.active .modal-toggle-close {
  2068. background: transparent;
  2069. }
  2070. .modal-toggle-close-wrapper.active .modal-toggle-close:before, .modal-toggle-close-wrapper.active .modal-toggle-close:after {
  2071. background: #fff;
  2072. }
  2073. .modal-toggle-close-wrapper.active .modal-toggle-close:before {
  2074. top: 0;
  2075. -webkit-transform: rotate(135deg);
  2076. -ms-transform: rotate(135deg);
  2077. transform: rotate(135deg);
  2078. }
  2079. .modal-toggle-close-wrapper.active .modal-toggle-close:after {
  2080. bottom: 0;
  2081. -webkit-transform: rotate(225deg);
  2082. -ms-transform: rotate(225deg);
  2083. transform: rotate(225deg);
  2084. }
  2085. .modal-toggle-bubble {
  2086. position: absolute;
  2087. top: 0;
  2088. background-color: rgba(34, 34, 34, 0.9);
  2089. -webkit-transform: scale(1);
  2090. -webkit-transition: all 0.3s ease-out;
  2091. z-index: 600;
  2092. }
  2093. .modal-toggle-bubble.active {
  2094. -webkit-transform: scale(100);
  2095. -webkit-transition: all 0.6s ease-out;
  2096. -webkit-transition-delay: .4s;
  2097. }
  2098. .modal-toggle-bubbleShadow {
  2099. position: absolute;
  2100. top: 0;
  2101. background-color: #222;
  2102. -webkit-transform: scale(1);
  2103. opacity: 1;
  2104. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  2105. z-index: 500;
  2106. }
  2107. .modal-toggle-bubbleShadow.active {
  2108. -webkit-transform: scale(1.5);
  2109. opacity: 0;
  2110. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  2111. -webkit-transition: all 0.3s ease-out;
  2112. }
  2113. .h2--shareTitle {
  2114. margin-top: -100px;
  2115. }
  2116. .shareWrapper {
  2117. list-style: none;
  2118. margin: 1.5rem auto 0;
  2119. padding: 0;
  2120. width: 60%;
  2121. }
  2122. .shareWrapper:before, .shareWrapper:after {
  2123. content: " ";
  2124. display: table;
  2125. }
  2126. .shareWrapper:after {
  2127. clear: both;
  2128. }
  2129. .shareWrapper li .shareButton {
  2130. display: block;
  2131. float: left;
  2132. margin: 0;
  2133. padding: 0 15px;
  2134. width: 16.66%;
  2135. height: 80px;
  2136. background-repeat: no-repeat;
  2137. background-position: center center;
  2138. background-size: contain;
  2139. opacity: 0.8;
  2140. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  2141. }
  2142. .shareWrapper li .shareButton:hover {
  2143. opacity: 1;
  2144. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  2145. }
  2146. @media (min-width: 991px) and (max-width: 1200px) {
  2147. .shareWrapper li .shareButton {
  2148. width: 16.66%;
  2149. height: 60px;
  2150. }
  2151. }
  2152. @media (max-width: 767px) {
  2153. .shareWrapper li .shareButton {
  2154. float: none;
  2155. width: 100%;
  2156. height: 40px;
  2157. margin-bottom: 20px;
  2158. }
  2159. }
  2160. .shareButton--twitter {
  2161. background-image: url(../images/twitter.svg);
  2162. }
  2163. .shareButton--facebook {
  2164. background-image: url(../images/facebook.svg);
  2165. }
  2166. .shareButton--linkedin {
  2167. background-image: url(../images/linkedin.svg);
  2168. }
  2169. .shareButton--buffer {
  2170. background-image: url(../images/buffer.svg);
  2171. }
  2172. .shareButton--hackernews {
  2173. background-image: url(../images/ycombinator.svg);
  2174. }
  2175. .shareButton--pocket {
  2176. background-image: url(../images/pocket.svg);
  2177. }
  2178. .textInput {
  2179. border: 1px solid rgba(0, 0, 0, 0.15);
  2180. padding: 0 15px;
  2181. height: 35px;
  2182. width: 100%;
  2183. font-size: 14px;
  2184. outline: none;
  2185. background: #fff;
  2186. appearance: none;
  2187. -webkit-tap-highlight-color: transparent;
  2188. border-radius: 4px;
  2189. font-family: "Roboto", sans-serif;
  2190. font-weight: 300;
  2191. }
  2192. .textInput--large {
  2193. height: 45px;
  2194. font-size: 16px;
  2195. }
  2196. .button {
  2197. display: inline-block;
  2198. text-align: center;
  2199. white-space: nowrap;
  2200. vertical-align: middle;
  2201. cursor: pointer;
  2202. -webkit-user-select: none;
  2203. -moz-user-select: none;
  2204. -ms-user-select: none;
  2205. user-select: none;
  2206. outline: none;
  2207. background: transparent;
  2208. border-radius: 99px;
  2209. font-family: "Roboto", sans-serif;
  2210. letter-spacing: .02em;
  2211. padding: 10px 40px 9px 40px;
  2212. margin-top: 1.5rem;
  2213. border: 2px solid rgba(119, 119, 119, 0.8);
  2214. color: #777777;
  2215. text-decoration: none;
  2216. text-transform: uppercase;
  2217. }
  2218. .button:hover {
  2219. border-color: #777777;
  2220. }
  2221. @media (max-width: 767px) {
  2222. .button {
  2223. font-size: 14px;
  2224. }
  2225. }
  2226. .button--primary {
  2227. border: 2px solid rgba(34, 34, 34, 0.8);
  2228. color: #222;
  2229. }
  2230. .button--primary:hover {
  2231. border-color: #222;
  2232. }
  2233. .u-clearfix:before, .u-clearfix:after {
  2234. content: " ";
  2235. display: table;
  2236. }
  2237. .u-clearfix:after {
  2238. clear: both;
  2239. }
  2240. .u-alignRight {
  2241. float: right !important;
  2242. }
  2243. .u-alignLeft {
  2244. float: left !important;
  2245. }
  2246. .u-alignCenter {
  2247. text-align: center !important;
  2248. }
  2249. .u-table {
  2250. display: table !important;
  2251. }
  2252. .u-table:before {
  2253. height: auto !important;
  2254. display: inherit !important;
  2255. }
  2256. .u-tableCell {
  2257. display: table-cell !important;
  2258. }
  2259. .u-verticalAlignTop {
  2260. vertical-align: top !important;
  2261. }
  2262. .u-verticalAlignMiddle {
  2263. vertical-align: middle !important;
  2264. }
  2265. .u-verticalAlignBottom {
  2266. vertical-align: bottom !important;
  2267. }
  2268. .hide {
  2269. display: none !important;
  2270. }
  2271. .show {
  2272. display: block !important;
  2273. }
  2274. .invisible {
  2275. visibility: hidden;
  2276. }
  2277. .hidden {
  2278. display: none !important;
  2279. visibility: hidden !important;
  2280. }
  2281. .is-blurred {
  2282. -webkit-filter: blur(10px);
  2283. -moz-filter: blur(10px);
  2284. filter: blur(10px);
  2285. -webkit-transition: all 0.5s;
  2286. transition: all 0.5s;
  2287. }
  2288. .u-overflow-y-hidden {
  2289. overflow-y: hidden;
  2290. }
  2291. .u-scrollbar-hidden {
  2292. padding-right: 15px;
  2293. }
  2294. .u-clearHr {
  2295. clear: both;
  2296. visibility: hidden;
  2297. }
  2298. @-ms-viewport {
  2299. width: device-width;
  2300. }
  2301. .visible-xs, .visible-sm, .visible-md, .visible-lg {
  2302. display: none !important;
  2303. }
  2304. .visible-xs-block,
  2305. .visible-xs-inline,
  2306. .visible-xs-inline-block,
  2307. .visible-sm-block,
  2308. .visible-sm-inline,
  2309. .visible-sm-inline-block,
  2310. .visible-md-block,
  2311. .visible-md-inline,
  2312. .visible-md-inline-block,
  2313. .visible-lg-block,
  2314. .visible-lg-inline,
  2315. .visible-lg-inline-block {
  2316. display: none !important;
  2317. }
  2318. @media (max-width: 767px) {
  2319. .visible-xs {
  2320. display: block !important;
  2321. }
  2322. table.visible-xs {
  2323. display: table;
  2324. }
  2325. tr.visible-xs {
  2326. display: table-row !important;
  2327. }
  2328. th.visible-xs,
  2329. td.visible-xs {
  2330. display: table-cell !important;
  2331. }
  2332. }
  2333. @media (max-width: 767px) {
  2334. .visible-xs-block {
  2335. display: block !important;
  2336. }
  2337. }
  2338. @media (max-width: 767px) {
  2339. .visible-xs-inline {
  2340. display: inline !important;
  2341. }
  2342. }
  2343. @media (max-width: 767px) {
  2344. .visible-xs-inline-block {
  2345. display: inline-block !important;
  2346. }
  2347. }
  2348. @media (min-width: 768px) and (max-width: 991px) {
  2349. .visible-sm {
  2350. display: block !important;
  2351. }
  2352. table.visible-sm {
  2353. display: table;
  2354. }
  2355. tr.visible-sm {
  2356. display: table-row !important;
  2357. }
  2358. th.visible-sm,
  2359. td.visible-sm {
  2360. display: table-cell !important;
  2361. }
  2362. }
  2363. @media (min-width: 768px) and (max-width: 991px) {
  2364. .visible-sm-block {
  2365. display: block !important;
  2366. }
  2367. }
  2368. @media (min-width: 768px) and (max-width: 991px) {
  2369. .visible-sm-inline {
  2370. display: inline !important;
  2371. }
  2372. }
  2373. @media (min-width: 768px) and (max-width: 991px) {
  2374. .visible-sm-inline-block {
  2375. display: inline-block !important;
  2376. }
  2377. }
  2378. @media (min-width: 992px) and (max-width: 1199px) {
  2379. .visible-md {
  2380. display: block !important;
  2381. }
  2382. table.visible-md {
  2383. display: table;
  2384. }
  2385. tr.visible-md {
  2386. display: table-row !important;
  2387. }
  2388. th.visible-md,
  2389. td.visible-md {
  2390. display: table-cell !important;
  2391. }
  2392. }
  2393. @media (min-width: 992px) and (max-width: 1199px) {
  2394. .visible-md-block {
  2395. display: block !important;
  2396. }
  2397. }
  2398. @media (min-width: 992px) and (max-width: 1199px) {
  2399. .visible-md-inline {
  2400. display: inline !important;
  2401. }
  2402. }
  2403. @media (min-width: 992px) and (max-width: 1199px) {
  2404. .visible-md-inline-block {
  2405. display: inline-block !important;
  2406. }
  2407. }
  2408. @media (min-width: 1200px) {
  2409. .visible-lg {
  2410. display: block !important;
  2411. }
  2412. table.visible-lg {
  2413. display: table;
  2414. }
  2415. tr.visible-lg {
  2416. display: table-row !important;
  2417. }
  2418. th.visible-lg,
  2419. td.visible-lg {
  2420. display: table-cell !important;
  2421. }
  2422. }
  2423. @media (min-width: 1200px) {
  2424. .visible-lg-block {
  2425. display: block !important;
  2426. }
  2427. }
  2428. @media (min-width: 1200px) {
  2429. .visible-lg-inline {
  2430. display: inline !important;
  2431. }
  2432. }
  2433. @media (min-width: 1200px) {
  2434. .visible-lg-inline-block {
  2435. display: inline-block !important;
  2436. }
  2437. }
  2438. @media (max-width: 767px) {
  2439. .hidden-xs {
  2440. display: none !important;
  2441. }
  2442. }
  2443. @media (min-width: 768px) and (max-width: 991px) {
  2444. .hidden-sm {
  2445. display: none !important;
  2446. }
  2447. }
  2448. @media (min-width: 992px) and (max-width: 1199px) {
  2449. .hidden-md {
  2450. display: none !important;
  2451. }
  2452. }
  2453. @media (min-width: 1200px) {
  2454. .hidden-lg {
  2455. display: none !important;
  2456. }
  2457. }
  2458. .visible-print {
  2459. display: none !important;
  2460. }
  2461. @media print {
  2462. .visible-print {
  2463. display: block !important;
  2464. }
  2465. table.visible-print {
  2466. display: table;
  2467. }
  2468. tr.visible-print {
  2469. display: table-row !important;
  2470. }
  2471. th.visible-print,
  2472. td.visible-print {
  2473. display: table-cell !important;
  2474. }
  2475. }
  2476. .visible-print-block {
  2477. display: none !important;
  2478. }
  2479. @media print {
  2480. .visible-print-block {
  2481. display: block !important;
  2482. }
  2483. }
  2484. .visible-print-inline {
  2485. display: none !important;
  2486. }
  2487. @media print {
  2488. .visible-print-inline {
  2489. display: inline !important;
  2490. }
  2491. }
  2492. .visible-print-inline-block {
  2493. display: none !important;
  2494. }
  2495. @media print {
  2496. .visible-print-inline-block {
  2497. display: inline-block !important;
  2498. }
  2499. }
  2500. @media print {
  2501. .hidden-print {
  2502. display: none !important;
  2503. }
  2504. }