style.css 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625
  1. @charset "UTF-8";
  2. /*---------------------------------------------------------------------------------
  3. Theme Name: Hemingway
  4. Version: 1.54
  5. Description: Hemingway is a clean, beautiful and responsive two-column theme for bloggers. Features responsive design, retina-ready assets, full-width header image with parallax scrolling effect, custom accent color, custom logo upload, custom widgets (video, Flickr and Dribbble), page templates and translation-ready code. Included translations: Swedish/svenska.
  6. Tags: black, dark, white, green, two-columns, fluid-layout, responsive-layout, custom-header, custom-menu, custom-colors, featured-images, flexible-header, post-formats, sticky-post, threaded-comments, translation-ready, editor-style
  7. Author: Anders Norén
  8. Author URI: http://www.andersnoren.se
  9. Theme URI: http://www.andersnoren.se/teman/hemingway-wordpress-theme/
  10. License: GNU General Public License version 2.0
  11. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  12. All files, unless otherwise stated, are released under the GNU General Public License
  13. version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)
  14. -----------------------------------------------------------------------------------
  15. 0. CSS Reset & Clearfix
  16. 1. Document Setup
  17. 2. Structure
  18. 3. Header
  19. 4. Navigation
  20. 5. Main Content
  21. 6. Single post
  22. 7. Post Content
  23. 8. Comments
  24. 9. Pagination
  25. 10. Page & Page Templates
  26. 11. Sidebar
  27. 12. Footer
  28. 13. Credits
  29. 14. Responsive
  30. ----------------------------------------------------------------------------------- */
  31. /* -------------------------------------------------------------------------------- */
  32. /* 0. CSS Reset
  33. /* -------------------------------------------------------------------------------- */
  34. html, body { margin:0; padding:0;}
  35. h1, h2, h3, h4, h5, h6, p, blockquote, address, big, cite, code, em, font, img, small, strike, sub, sup, li, ol, ul, fieldset, form, label, legend, button, table, caption, tr, th, td {
  36. margin:0;
  37. padding:0;
  38. border:0;
  39. font-weight:normal;
  40. font-style:normal;
  41. font-size:100%;
  42. line-height:1;
  43. font-family:inherit;
  44. text-align:left;
  45. }
  46. table {
  47. border-collapse:collapse;
  48. border-spacing:0;
  49. }
  50. ol, ul { list-style:none; }
  51. blockquote:before,
  52. blockquote:after { content:""; }
  53. a { outline:none; }
  54. input[type=search] {
  55. -moz-appearance:none;
  56. -webkit-appearance:none;
  57. }
  58. input[type="search"]::-webkit-search-decoration,
  59. input[type="search"]::-webkit-search-cancel-button,
  60. input[type="search"]::-webkit-search-results-button,
  61. input[type="search"]::-webkit-search-results-decoration {
  62. display: none;
  63. }
  64. /* -------------------------------------------------------------------------------- */
  65. /* 1. Document setup
  66. /* -------------------------------------------------------------------------------- */
  67. body {
  68. margin: 0;
  69. padding: 0;
  70. border: none;
  71. background: #FFF;
  72. color: #444;
  73. font-family: 'Lato', sans-serif;
  74. font-size: 18px;
  75. -webkit-font-smoothing: subpixel-antialiased;
  76. }
  77. body a {
  78. color: #1abc9c;
  79. text-decoration: none;
  80. }
  81. body a:hover {
  82. color: #1abc9c;
  83. text-decoration: none;
  84. }
  85. * {
  86. box-sizing: border-box;
  87. -moz-box-sizing: border-box;
  88. -webkit-box-sizing: border-box;
  89. }
  90. img {
  91. max-width: 100%;
  92. height: auto;
  93. }
  94. .hidden { display: none; }
  95. .clear { clear: both; }
  96. .left { float: left; }
  97. .right { float: right; }
  98. ::selection {
  99. background: #1abc9c;
  100. color: #333;
  101. }
  102. ::-webkit-input-placeholder { color: #A9A9A9; }
  103. :-ms-input-placeholder { color: #A9A9A9; }
  104. /* Transitions --------------------------------------- */
  105. .screen-reader-text {
  106. clip: rect(1px, 1px, 1px, 1px);
  107. position: absolute !important;
  108. height: 1px;
  109. width: 1px;
  110. overflow: hidden;
  111. }
  112. .screen-reader-text:focus {
  113. background-color: #f1f1f1;
  114. border-radius: 3px;
  115. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  116. clip: auto !important;
  117. color: #21759b;
  118. display: block;
  119. font-size: 14px;
  120. font-size: 0.875rem;
  121. font-weight: bold;
  122. height: auto;
  123. left: 5px;
  124. line-height: normal;
  125. padding: 15px 23px 14px;
  126. text-decoration: none;
  127. top: 5px;
  128. width: auto;
  129. z-index: 100000; /* Above WP toolbar. */
  130. }
  131. body a,
  132. .post-tags a::after {
  133. -webkit-transition: all 0.1s ease-in-out;
  134. -moz-transition: all 0.1s ease-in-out;
  135. -ms-transition: all 0.1s ease-in-out;
  136. -o-transition: all 0.1s ease-in-out;
  137. transition: all 0.1s ease-in-out;
  138. }
  139. .social-media-icon {
  140. text-decoration: none;
  141. display: block;
  142. float: left;
  143. margin-right: 4px;
  144. position: relative;
  145. width: 36px;
  146. height: 36px;
  147. -webkit-border-radius: 3px;
  148. -moz-border-radius: 3px;
  149. border-radius: 3px;
  150. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 1px rgba(0,0,0,0.1);
  151. -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 1px rgba(0,0,0,0.1);
  152. box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 1px rgba(0,0,0,0.1);
  153. }
  154. .social-media-icon.social-media-icon-facebook {
  155. background: #597ac7;
  156. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #597ac7), color-stop(1, #6483cb));
  157. background: -ms-linear-gradient(bottom, #597ac7, #6483cb);
  158. background: -moz-linear-gradient(center bottom, #597ac7 0%, #6483cb 100%);
  159. background: -o-linear-gradient(#6483cb, #597ac7);
  160. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6483cb', endColorstr='#597ac7', GradientType=0);
  161. border: 1px solid #466bc1;
  162. }
  163. .social-media-icon.social-media-icon-facebook:hover {
  164. background: #6886cc;
  165. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #6886cc), color-stop(1, #748fd0));
  166. background: -ms-linear-gradient(bottom, #6886cc, #748fd0);
  167. background: -moz-linear-gradient(center bottom, #6886cc 0%, #748fd0 100%);
  168. background: -o-linear-gradient(#748fd0, #6886cc);
  169. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#748fd0', endColorstr='#6886cc', GradientType=0);
  170. border: 1px solid #5577c6;
  171. }
  172. .social-media-icon.social-media-icon-github {
  173. background: aqua;
  174. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, aqua), color-stop(1, #6483cb));
  175. background: -ms-linear-gradient(bottom, #8585ad, #6483cb);
  176. background: -moz-linear-gradient(center bottom, #8585ad 0%, #6483cb 100%);
  177. background: -o-linear-gradient(#6483cb, #597ac7);
  178. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6483cb', endColorstr='#597ac7', GradientType=0);
  179. border: 1px solid #8585ad;
  180. }
  181. .social-media-icon.social-media-icon-github:hover {
  182. background: aqua;
  183. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, aqua), color-stop(1, #6483cb));
  184. background: -ms-linear-gradient(bottom, #8585ad, #6483cb);
  185. background: -moz-linear-gradient(center bottom, #8585ad 0%, #6483cb 100%);
  186. background: -o-linear-gradient(#6483cb, #597ac7);
  187. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6483cb', endColorstr='#597ac7', GradientType=0);
  188. border: 1px solid #8585ad;
  189. }
  190. .social-media-icon.social-media-icon-twitter {
  191. background: #5bbcec;
  192. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #5bbcec), color-stop(1, #69c2ee));
  193. background: -ms-linear-gradient(bottom, #5bbcec, #69c2ee);
  194. background: -moz-linear-gradient(center bottom, #5bbcec 0%, #69c2ee 100%);
  195. background: -o-linear-gradient(#69c2ee, #5bbcec);
  196. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#69c2ee', endColorstr='#5bbcec', GradientType=0);
  197. border: 1px solid #44b3e9;
  198. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 1px 1px rgba(0,0,0,0.1);
  199. -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 1px 1px rgba(0,0,0,0.1);
  200. box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 1px 1px rgba(0,0,0,0.1);
  201. }
  202. .social-media-icon.social-media-icon-twitter:hover {
  203. background: #6dc3ee;
  204. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #6dc3ee), color-stop(1, #7bc9f0));
  205. background: -ms-linear-gradient(bottom, #6dc3ee, #7bc9f0);
  206. background: -moz-linear-gradient(center bottom, #6dc3ee 0%, #7bc9f0 100%);
  207. background: -o-linear-gradient(#7bc9f0, #6dc3ee);
  208. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7bc9f0', endColorstr='#6dc3ee', GradientType=0);
  209. border: 1px solid #56baeb;
  210. }
  211. .social-media-icon.social-media-icon-google-plus {
  212. background: #f80000;
  213. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f80000), color-stop(1, #ff0808));
  214. background: -ms-linear-gradient(bottom, #f80000, #ff0808);
  215. background: -moz-linear-gradient(center bottom, #f80000 0%, #ff0808 100%);
  216. background: -o-linear-gradient(#ff0808, #f80000);
  217. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0808', endColorstr='#f80000', GradientType=0);
  218. border: 1px solid #df0000;
  219. }
  220. .social-media-icon.social-media-icon-google-plus:hover {
  221. background: #ff0d0d;
  222. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ff0d0d), color-stop(1, #ff1d1d));
  223. background: -ms-linear-gradient(bottom, #ff0d0d, #ff1d1d);
  224. background: -moz-linear-gradient(center bottom, #ff0d0d 0%, #ff1d1d 100%);
  225. background: -o-linear-gradient(#ff1d1d, #ff0d0d);
  226. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1d1d', endColorstr='#ff0d0d', GradientType=0);
  227. border: 1px solid #f30000;
  228. }
  229. .social-media-icon.social-media-icon-rss {
  230. background: #ff9200;
  231. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ff9200), color-stop(1, #ff990f));
  232. background: -ms-linear-gradient(bottom, #ff9200, #ff990f);
  233. background: -moz-linear-gradient(center bottom, #ff9200 0%, #ff990f 100%);
  234. background: -o-linear-gradient(#ff990f, #ff9200);
  235. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff990f', endColorstr='#ff9200', GradientType=0);
  236. border: 1px solid #e68300;
  237. }
  238. .social-media-icon.social-media-icon-rss:hover {
  239. background: #ff9b14;
  240. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ff9b14), color-stop(1, #ffa124));
  241. background: -ms-linear-gradient(bottom, #ff9b14, #ffa124);
  242. background: -moz-linear-gradient(center bottom, #ff9b14 0%, #ffa124 100%);
  243. background: -o-linear-gradient(#ffa124, #ff9b14);
  244. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa124', endColorstr='#ff9b14', GradientType=0);
  245. border: 1px solid #fa8f00;
  246. }
  247. .social-media-icon [class^="fa fa-"] {
  248. width: 1em;
  249. height: 1em;
  250. text-align: center;
  251. display: block;
  252. position: absolute;
  253. line-height: 1em;
  254. color: #ffffff;
  255. top: 50%;
  256. left: 50%;
  257. margin-top: -0.45em;
  258. margin-left: -0.5em;
  259. font-size: 18px;
  260. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
  261. }
  262. .fa-facebook:before {
  263. content: "\f09a";
  264. }
  265. .fa-github:before {
  266. content: "\f09b";
  267. }
  268. .fa-twitter:before {
  269. content: "\f099";
  270. }
  271. .fa-google-plus:before {
  272. content: "\f0d5";
  273. }
  274. .nav-toggle,
  275. .nav-toggle .bar,
  276. .blog-menu a,
  277. .blog-menu ul .has-children,
  278. .blog-title a,
  279. .post-title a,
  280. .format-bubble,
  281. .post-meta a,
  282. .featured-media a,
  283. .content form input,
  284. .content form textarea,
  285. .media-caption,
  286. .post-nav a,
  287. input#s,
  288. #searchsubmit,
  289. .widget-content ul li,
  290. .widget_recent_entries a,
  291. .search-toggle.active .metal,
  292. .search-toggle.active .handle,
  293. a.more-link,
  294. .dribbble-shot img,
  295. .flickr_badge_image a img {
  296. -webkit-transition: all 0.2s ease-in-out;
  297. -moz-transition: all 0.2s ease-in-out;
  298. -ms-transition: all 0.2s ease-in-out;
  299. -o-transition: all 0.2s ease-in-out;
  300. transition: all 0.2s ease-in-out;
  301. }
  302. .tothetop {
  303. -webkit-transition: all 0.3s ease-in-out;
  304. -moz-transition: all 0.3s ease-in-out;
  305. -ms-transition: all 0.3s ease-in-out;
  306. -o-transition: all 0.3s ease-in-out;
  307. transition: all 0.3s ease-in-out;
  308. }
  309. /* Screen Reader Text --------------------------------------- */
  310. .screen-reader-text {
  311. clip: rect(1px, 1px, 1px, 1px);
  312. position: absolute !important;
  313. height: 1px;
  314. width: 1px;
  315. overflow: hidden;
  316. }
  317. .screen-reader-text:focus {
  318. background-color: #f1f1f1;
  319. border-radius: 3px;
  320. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  321. clip: auto !important;
  322. color: #21759b;
  323. display: block;
  324. font-size: 14px;
  325. font-size: 0.875rem;
  326. font-weight: bold;
  327. height: auto;
  328. left: 5px;
  329. line-height: normal;
  330. padding: 15px 23px 14px;
  331. text-decoration: none;
  332. top: 5px;
  333. width: auto;
  334. z-index: 100000; /* Above WP toolbar. */
  335. }
  336. /* -------------------------------------------------------------------------------- */
  337. /* 2. Structure
  338. /* -------------------------------------------------------------------------------- */
  339. .section {
  340. padding: 10% 0;
  341. position: relative;
  342. }
  343. .section.large-padding { padding: 7.5% 0; }
  344. .section.medium-padding { padding: 5% 0; }
  345. .section.small-padding { padding: 2.5% 0; }
  346. .section.no-padding { padding: 0; }
  347. .section.bg-dark { background: #1D1D1D; }
  348. .section.bg-dark-light { background: #262626; }
  349. .bg-shade {
  350. position: absolute;
  351. top: 0;
  352. right: 0;
  353. bottom: 0;
  354. left: 0;
  355. background: #262626;
  356. }
  357. .section-inner {
  358. width: 1040px;
  359. max-width: 86%;
  360. margin: 0 auto;
  361. }
  362. .big-wrapper { overflow: hidden; }
  363. .wrapper { margin-top: 75px; }
  364. .content { width: 65%; }
  365. .content.center { margin-left: auto; margin-right: auto; }
  366. .content.full-width { width: 100%; }
  367. .sidebar { width: 27.5%; }
  368. /* -------------------------------------------------------------------------------- */
  369. /* 3. Header
  370. /* -------------------------------------------------------------------------------- */
  371. .header-cover { overflow-y: hidden; }
  372. .header {
  373. padding: 100px 0;
  374. background: no-repeat center;
  375. background-size: cover;
  376. -moz-background-size: cover;
  377. -webkit-background-size: cover;
  378. }
  379. .header-inner { position: relative; z-index: 2; text-align: center; }
  380. .blog-logo { display: inline-block; }
  381. .blog-logo a,
  382. .blog-logo img { display: block; }
  383. .blog-logo img {
  384. max-height: 40%;
  385. width: auto;
  386. max-width: 100%;
  387. height: auto;
  388. }
  389. .blog-info {
  390. display: inline-block;
  391. padding: 30px;
  392. }
  393. .blog-title {
  394. width: 100%;
  395. text-align: center;
  396. font-family: 'Raleway', sans-serif;
  397. }
  398. .blog-title a {
  399. color: #FFF;
  400. text-transform: uppercase;
  401. letter-spacing: 4px;
  402. font-weight: 700;
  403. font-size: 2.7em;
  404. }
  405. .blog-title-with-logo a {
  406. color: #FFF;
  407. text-transform: uppercase;
  408. letter-spacing: 4px;
  409. font-weight: 700;
  410. font-size: 3.2em;
  411. vertical-align: 30%;
  412. text-align: center;
  413. }
  414. .blog-title-with-logo img {
  415. vertical-align: -30%;
  416. text-align: center;
  417. }
  418. h2.blog-title-with-logo {
  419. vertical-align: -30%;
  420. text-align: center;
  421. }
  422. .blog-description:before {
  423. content: "";
  424. display: block;
  425. width: 100px;
  426. height: 2px;
  427. background: rgba(255,255,255,0.1);
  428. margin: 20px auto;
  429. }
  430. .blog-description {
  431. font-family: 'Raleway', sans-serif;
  432. text-align: center;
  433. color: rgba(255,255,255,0.8);
  434. font-weight: 300;
  435. font-size: 1.6em;
  436. }
  437. /* Nav-toggle --------------------------------------- */
  438. /* -------------------------------------------------------------------------------- */
  439. /* 4. Navigation
  440. /* -------------------------------------------------------------------------------- */
  441. .mobile-menu { display: none; }
  442. .blog-menu li { position: relative; }
  443. .blog-menu > li { float: left; }
  444. .blog-menu > li:before {
  445. content: "/";
  446. display: block;
  447. position: absolute;
  448. left: 0;
  449. top: 50%;
  450. margin-top: -9px;
  451. margin-left: -3px;
  452. font-size: 16px;
  453. color: #444;
  454. font-weight: 300;
  455. z-index: 1000;
  456. }
  457. .blog-menu > li:first-child:before { content: none; }
  458. .blog-menu a {
  459. display: block;
  460. padding: 27px 20px;
  461. text-transform: uppercase;
  462. letter-spacing: 1px;
  463. color: rgba(255,255,255,0.4);
  464. font-size: 13px;
  465. }
  466. .blog-menu a:hover,
  467. .blog-menu .current-menu-item a { color: #FFF; }
  468. .blog-menu > .has-children a,
  469. .blog-menu > .page_item_has_children a { padding-right: 35px; }
  470. .blog-menu > .has-children::after,
  471. .blog-menu > .page_item_has_children::after {
  472. content: "";
  473. display: block;
  474. border: 5px solid transparent;
  475. border-top-color: rgba(255,255,255,0.4);
  476. position: absolute;
  477. z-index: 1001;
  478. right: 17px;
  479. top: 50%;
  480. margin-top: -2px;
  481. }
  482. .blog-menu > .has-children:hover::after,
  483. .blog-menu > .page_item_has_children:hover::after { border-top-color: #FFF; }
  484. .blog-menu li:hover a {
  485. background-color: #1D1D1D;
  486. cursor: pointer;
  487. }
  488. .blog-menu li:hover > a { color: #FFF; }
  489. /* Sub menus --------------------------------------- */
  490. .blog-menu ul {
  491. position: absolute;
  492. left: -9999px;
  493. display: none;
  494. z-index: 999;
  495. }
  496. .blog-menu ul li {
  497. float: none;
  498. display: block;
  499. }
  500. .blog-menu ul > .has-children::after,
  501. .blog-menu ul > .page_item_has_children::after {
  502. content: "";
  503. display: block;
  504. border: 6px solid transparent;
  505. border-left-color: rgba(255,255,255,0.4);
  506. position: absolute;
  507. z-index: 1001;
  508. right: 10px;
  509. top: 50%;
  510. margin-top: -5px;
  511. }
  512. .blog-menu ul > .has-children:hover::after,
  513. .blog-menu ul > .page_item_has_children:hover::after { border-left-color: #FFF; }
  514. .blog-menu ul li {
  515. width: 240px;
  516. background: #1d1d1d;
  517. }
  518. .blog-menu ul a {
  519. padding: 20px 0px;
  520. margin: 0 20px;
  521. line-height: 130%;
  522. -moz-box-sizing: border-box;
  523. -webkit-box-sizing: border-box;
  524. box-sizing: border-box;
  525. border-bottom: 1px solid rgba(255,255,255,0.1);
  526. }
  527. .blog-menu ul > li:last-child a { border-bottom-width: 0; }
  528. .blog-menu li:hover > ul {
  529. opacity: 1;
  530. left: 0;
  531. display: block;
  532. }
  533. /* Deep down --------------------------------------- */
  534. .blog-menu ul li:hover > ul {
  535. top: 0;
  536. left: 240px;
  537. margin-left: 0;
  538. }
  539. /* -------------------------------------------------------------------------------- */
  540. /* 5. Main content
  541. /* -------------------------------------------------------------------------------- */
  542. .post,
  543. .page {
  544. padding-bottom: 8%;
  545. border-bottom: 4px solid #EEE;
  546. margin-bottom: 8%;
  547. }
  548. .single-post .post,
  549. .page .post,
  550. .post:last-child,
  551. .page:last-child { padding-bottom: 0; border-bottom: 0; margin-bottom: 0; }
  552. /* Featured media --------------------------------------- */
  553. .featured-media {
  554. position: relative;
  555. display: block;
  556. margin-bottom: 6%;
  557. }
  558. .featured-media a,
  559. .featured-media img { display: block; }
  560. .featured-media img {
  561. border-radius: 4px;
  562. margin: 0 auto;
  563. }
  564. .featured-media iframe {
  565. display: block;
  566. border: none;
  567. max-width: 100%;
  568. height: auto;
  569. }
  570. .featured-media .sticky-post {
  571. position: absolute;
  572. top: 5%;
  573. right: 0;
  574. padding: 8px 10px;
  575. border-radius: 3px 0 0 3px;
  576. background: #1abc9c;
  577. color: #FFF;
  578. font-size: 0.7em;
  579. text-transform: uppercase;
  580. letter-spacing: 1px;
  581. z-index: 10;
  582. }
  583. .media-caption-container {
  584. position: absolute;
  585. width: 95%;
  586. margin-left: 2.5%;
  587. bottom: 1.5em;
  588. text-align: center;
  589. font-size: 0.85em;
  590. }
  591. .media-caption {
  592. display: inline-block;
  593. padding: 7px 11px;
  594. border-radius: 3px;
  595. background: #262626;
  596. background: rgba(38,38,38,0.75);
  597. color: #FFF;
  598. text-align: center;
  599. line-height: 130%;
  600. }
  601. .media-caption:hover {
  602. background: #262626;
  603. color: #FFF;
  604. }
  605. /* Post header --------------------------------------- */
  606. .post-header { margin-bottom: 5%; }
  607. .post-title {
  608. font-size: 1.6em;
  609. font-weight: 700;
  610. line-height: 120%;
  611. margin-bottom: 15px;
  612. font-family: 'Lato', sans-serif;
  613. text-transform: uppercase;
  614. -ms-word-break: break-all;
  615. word-break: break-word;
  616. -webkit-hyphens: auto;
  617. -moz-hyphens: auto;
  618. hyphens: auto;
  619. }
  620. .post-title,
  621. .post-title a { color: #2d2d2d; }
  622. .post-meta {
  623. font-size: 0.8em;
  624. color: #999;
  625. text-transform: uppercase;
  626. letter-spacing: 1px;
  627. }
  628. .post-meta a { color: #999; }
  629. .post-meta a:hover { color: #1abc9c; }
  630. .post-meta .date-sep { margin: 0 5px; color: #DDD; }
  631. .post-content a.more-link {
  632. display: inline-block;
  633. background: #262626;
  634. padding: 10px 18px;
  635. color: #FFF;
  636. font-size: 0.85em;
  637. border-radius: 4px;
  638. }
  639. .post-content a.more-link:hover {
  640. background: #1abc9c;
  641. color: #FFF;
  642. text-decoration: none !important;
  643. }
  644. /* Post format aside & video --------------------------------------- */
  645. .blog .format-aside .post-meta,
  646. .archive .format-aside .post-meta,
  647. .search .format-aside .post-meta,
  648. .blog .format-video .post-meta,
  649. .archive .format-video .post-meta,
  650. .search .format-video .post-meta { text-align: center; }
  651. .blog .format-video .post-content,
  652. .archive .format-video .post-content,
  653. .search .format-video .post-content {
  654. margin-top: 20px;
  655. }
  656. .blog .format-aside .post-content,
  657. .archive .format-aside .post-content,
  658. .search .format-aside .post-content {
  659. padding: 20px;
  660. background: #EEE;
  661. margin-top: 20px;
  662. border-radius: 3px;
  663. }
  664. /* Post format quote --------------------------------------- */
  665. .blog .format-quote .post-meta,
  666. .archive .format-quote .post-meta,
  667. .search .format-quote .post-meta { text-align: center; }
  668. .blog .format-quote .post-content,
  669. .archive .format-quote .post-content,
  670. .search .format-quote .post-content {
  671. margin-top: 20px;
  672. padding: 40px;
  673. background: #262626;
  674. color: #FFF;
  675. border-radius: 3px;
  676. }
  677. .blog .format-quote .post-content blockquote,
  678. .archive .format-quote .post-content blockquote,
  679. .search .format-quote .post-content blockquote {
  680. background: none;
  681. color: #FFF;
  682. padding: 0;
  683. font-size: 1.25em;
  684. margin-bottom: 0;
  685. }
  686. .blog .format-quote .post-content blockquote p,
  687. .archive .format-quote .post-content blockquote p,
  688. .search .format-quote .post-content blockquote p {
  689. text-align: center;
  690. }
  691. .blog .format-quote .post-content blockquote cite,
  692. .archive .format-quote .post-content blockquote cite,
  693. .search .format-quote .post-content blockquote cite {
  694. display: block;
  695. text-align: center;
  696. color: rgba(255,255,255,0.75);
  697. font-size: 1rem;
  698. font-weight: 400;
  699. }
  700. .blog .format-quote .post-content blockquote cite a,
  701. .archive .format-quote .post-content blockquote cite a,
  702. .search .format-quote .post-content blockquote cite a { color: rgba(255,255,255,0.75); }
  703. .blog .format-quote .post-content blockquote cite a:hover,
  704. .archive .format-quote .post-content blockquote cite a:hover,
  705. .search .format-quote .post-content blockquote cite a:hover { text-decoration: none; }
  706. /* -------------------------------------------------------------------------------- */
  707. /* 6. Single post
  708. /* -------------------------------------------------------------------------------- */
  709. .post-meta-bottom {
  710. margin-top: 10%;
  711. position: relative;
  712. }
  713. .post-categories {
  714. position: relative;
  715. font-size: 0.85em;
  716. font-weight: 400;
  717. color: #999;
  718. line-height: 120%;
  719. padding-left: 36px;
  720. }
  721. .category-icon,
  722. .category-icon:after,
  723. .front-flap,
  724. .front-flap:after {
  725. display: block;
  726. position: absolute;
  727. }
  728. .category-icon {
  729. left: 0;
  730. top: 2px;
  731. width: 24px;
  732. height: 16px;
  733. background: #727272;
  734. border-radius: 0 2px 2px 2px;
  735. }
  736. .category-icon:after {
  737. content: "";
  738. width: 12px;
  739. height: 3px;
  740. top: -3px;
  741. left: 0px;
  742. background: #727272;
  743. border-radius: 1px 1px 0 0;
  744. }
  745. .front-flap {
  746. height: 13px;
  747. width: 22px;
  748. bottom: -1px;
  749. right: -2px;
  750. background: #727272;
  751. border-radius: 2px;
  752. border: 1px solid #FFF;
  753. -webkit-transform: skew(-25deg,0deg);
  754. -moz-transform: skew(-25deg,0deg);
  755. -ms-transform: skew(-25deg,0deg);
  756. -o-transform: skew(-25deg,0deg);
  757. transform: skew(-25deg,0deg);
  758. }
  759. .post-categories a:hover { text-decoration: underline; }
  760. .post-tags {
  761. margin-top: 20px;
  762. margin-left: 12px;
  763. }
  764. .post-tags a {
  765. position: relative;
  766. font-size: 12px;
  767. font-weight: 700;
  768. text-transform: uppercase;
  769. color: #FFF;
  770. display: inline-block;
  771. padding: 6px;
  772. margin-bottom: 5px;
  773. margin-right: 20px;
  774. background: #767676;
  775. border-radius: 0 2px 2px 0;
  776. }
  777. .post-tags a::after {
  778. border-top: 12px solid transparent;
  779. border-right: 12px solid #767676;
  780. border-bottom: 12px solid transparent;
  781. content: "";
  782. height: 0;
  783. position: absolute;
  784. top: 0;
  785. left: -12px;
  786. width: 0;
  787. }
  788. .post-tags a:before {
  789. content: "";
  790. display: block;
  791. position: absolute;
  792. left: -4px;
  793. top: 50%;
  794. margin-top: -2px;
  795. width: 4px;
  796. height: 4px;
  797. background: #FFF;
  798. border-radius: 99px;
  799. z-index: 10;
  800. }
  801. .post-tags a:hover {
  802. background: #1abc9c;
  803. color: #FFF;
  804. }
  805. .post-tags a:hover:after { border-right-color: #1abc9c; }
  806. .post-nav {
  807. font-size: 0.95em;
  808. margin-top: 20px;
  809. border-top: 4px solid #EEE;
  810. border-bottom: 4px solid #EEE;
  811. }
  812. .post-nav a {
  813. display: block;
  814. position: relative;
  815. padding: 25px 0;
  816. max-width: 49%;
  817. color: #666;
  818. }
  819. .post-nav h5 {
  820. text-transform: uppercase;
  821. letter-spacing: 1px;
  822. font-size: 0.7em;
  823. color: #999;
  824. margin-bottom: 7px;
  825. font-weight: 700;
  826. }
  827. .post-nav-newer h5 { text-align: right; }
  828. .post-nav-older { float: left; }
  829. .post-nav-newer { float: right; text-align: right; }
  830. .post-nav a:hover { color: #1abc9c; }
  831. /* -------------------------------------------------------------------------------- */
  832. /* 7. Post content
  833. /* -------------------------------------------------------------------------------- */
  834. .post-content { font-size: 1.075em; }
  835. .post-content a:hover { text-decoration: underline; }
  836. .post-content p,
  837. .post-content blockquote,
  838. .post-content ul,
  839. .post-content ol,
  840. .post-content address,
  841. .post-content dl,
  842. .post-content .wp-caption,
  843. .post-content pre {
  844. line-height: 170%;
  845. margin-bottom: 1.0em;
  846. text-align: justify;
  847. }
  848. .post-content > *:first-child { margin-top: 0; }
  849. .post-content *:last-child { margin-bottom: 0; }
  850. .post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  851. margin: 50px 0 25px;
  852. color: #444;
  853. line-height: 120%;
  854. }
  855. .post-content h1 { font-size: 2em; font-weight: 700; }
  856. .post-content h2 { font-size: 1.75em; font-weight: 700; }
  857. .post-content h3 { font-size: 1.5em; font-weight: 700; }
  858. .post-content h4 { font-size: 1.25em; }
  859. .post-content h5 { font-size: 1.1em; }
  860. .post-content h6 {
  861. font-size: 0.9em;
  862. font-weight: bold;
  863. text-transform: uppercase;
  864. letter-spacing: 1px;
  865. }
  866. .post-content h1+h1, .post-content h1+h2, .post-content h1+h3, .post-content h1+h4, .post-content h1+h5, .post-content h1+h6,
  867. .post-content h2+h1, .post-content h2+h2, .post-content h2+h3, .post-content h2+h4, .post-content h2+h5, .post-content h2+h6,
  868. .post-content h3+h1, .post-content h3+h2, .post-content h3+h3, .post-content h3+h4, .post-content h3+h5, .post-content h3+h6,
  869. .post-content h4+h1, .post-content h4+h2, .post-content h4+h3, .post-content h4+h4, .post-content h4+h5, .post-content h4+h6,
  870. .post-content h5+h1, .post-content h5+h2, .post-content h5+h3, .post-content h5+h4, .post-content h5+h5, .post-content h5+h6,
  871. .post-content h6+h1, .post-content h6+h2, .post-content h6+h3, .post-content h6+h4, .post-content h6+h5, .post-content h6+h6 {
  872. margin-top: 25px;
  873. }
  874. .post-content blockquote {
  875. padding: 1.1em;
  876. line-height: 150%;
  877. color: #666;
  878. background: #EEE;
  879. font-family: 'Raleway', 'Helvetica Neue', sans-serif;
  880. }
  881. .post-content cite {
  882. font-weight: 700;
  883. letter-spacing: 1px;
  884. text-transform: uppercase;
  885. line-height: 140%;
  886. color: #666;
  887. }
  888. .post-content cite:before { content: "— "; }
  889. .post-content blockquote cite {
  890. display: block;
  891. margin-top: 1em;
  892. font-size: 0.8em;
  893. }
  894. .post-content blockquote cite em { font-style: italic; font-weight: bold; }
  895. em, q { font-style: italic; }
  896. .post-content strong em,
  897. .post-content em strong {
  898. font-weight: bold;
  899. font-style: italic;
  900. }
  901. .post-content big { font-size: 1.25em; }
  902. abbr, acronym { cursor: help; }
  903. code, kbd, pre {
  904. font-size: 0.85em;
  905. background: #EEE;
  906. font-family: Menlo, Monaco, monospace;
  907. }
  908. .post-content .highlight {
  909. background: #fcf8a5;
  910. width: auto;
  911. display: inline;
  912. padding: 2px 3px;
  913. }
  914. .post-content kbd,
  915. .post-content code {
  916. padding: 5px;
  917. border-radius: 3px;
  918. }
  919. .post-content dl { line-height: 160%; }
  920. .post-content dl dt { font-weight: bold; }
  921. .post-content hr {
  922. width: 50%;
  923. height: 4px;
  924. background: #EEE;
  925. margin: 2em auto;
  926. border: 0;
  927. }
  928. .post-content ul {
  929. list-style: disc;
  930. margin-left: 1.5em;
  931. }
  932. .post-content ul ul { list-style: circle; }
  933. .post-content ul ul ul { list-style: square; }
  934. .post-content ol {
  935. list-style: decimal;
  936. margin-left: 1.5em;
  937. }
  938. .post-content ol ol { list-style: lower-alpha; }
  939. .post-content ol ol ol {
  940. list-style: lower-roman;
  941. }
  942. .post-content ul ul,
  943. .post-content ul ol,
  944. .post-content ol ul,
  945. .post-content ol ol {
  946. margin-bottom: 0;
  947. }
  948. .post-content li {
  949. margin-bottom: 0.5em;
  950. line-height: 170%;
  951. }
  952. .post-content li ol li:first-child,
  953. .post-content li ul li:first-child {
  954. margin-top: 0.5em;
  955. }
  956. .post-content ol > li:last-child,
  957. .post-content ul > li:last-child {
  958. margin-bottom: 0;
  959. }
  960. .post-content address {
  961. padding: 3% 3.5%;
  962. background: #F1F1F1;
  963. }
  964. .post-content pre {
  965. white-space: pre-wrap; /* css-3 */
  966. white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  967. white-space: -pre-wrap; /* Opera 4-6 */
  968. white-space: -o-pre-wrap; /* Opera 7 */
  969. word-wrap: break-word; /* Internet Explorer 5.5+ */
  970. line-height: 140%;
  971. padding: 2% 2.5%;
  972. background: #f1f1f1;
  973. }
  974. /* Post media --------------------------------------- */
  975. .wp-caption { max-width: 100%; }
  976. .wp-caption a,
  977. .wp-caption img { display: block; }
  978. img.alignleft,
  979. .alignleft img,
  980. img.aligncenter,
  981. .aligncenter img,
  982. img.alignright,
  983. .alignright img {
  984. box-sizing: border-box;
  985. padding: 5px;
  986. border: 1px solid #EEE;
  987. }
  988. .post-content .alignleft,
  989. .post-content .alignright {
  990. margin-bottom: 1.2em;
  991. max-width: 40%;
  992. }
  993. .post-content .wp-caption .alignleft,
  994. .post-content .wp-caption .alignright {
  995. margin-bottom: 0;
  996. }
  997. .post-content .alignleft {
  998. float: left;
  999. margin-right: 1em;
  1000. }
  1001. .post-content .alignright {
  1002. float: right;
  1003. margin-left: 1em;
  1004. }
  1005. .post-content .aligncenter {
  1006. display: block;
  1007. margin-left: auto;
  1008. margin-right: auto;
  1009. text-align: center;
  1010. }
  1011. .post-content .wp-caption-text,
  1012. .post-content .gallery-caption {
  1013. padding-top: 0.5em;
  1014. font-size: 0.85em;
  1015. font-style: italic;
  1016. color: #888;
  1017. text-align: center;
  1018. }
  1019. .post-content .gallery-caption {
  1020. font-size: 16px;
  1021. line-height: 24px;
  1022. }
  1023. /* Tables --------------------------------------- */
  1024. .post-content table {
  1025. border-collapse: collapse;
  1026. border-spacing: 0;
  1027. empty-cells: show;
  1028. font-size: 0.9em;
  1029. width: 100%;
  1030. margin-bottom: 1.1em;
  1031. }
  1032. .post-content th,
  1033. .post-content td {
  1034. padding: 2%;
  1035. margin: 0;
  1036. overflow: visible;
  1037. line-height: 120%;
  1038. border-bottom: 1px solid #DDD;
  1039. }
  1040. .post-content caption {
  1041. color: #444;
  1042. text-align: center;
  1043. padding: 2%;
  1044. }
  1045. .post-content thead {
  1046. vertical-align: bottom;
  1047. white-space: nowrap;
  1048. }
  1049. .post-content th {
  1050. font-weight: bold;
  1051. color: #444;
  1052. }
  1053. .post-content table tbody > tr:nth-child(odd) > td { background: #f9f9f9; }
  1054. /* Forms --------------------------------------- */
  1055. .post-content fieldset {
  1056. padding: 25px;
  1057. border: 2px solid #eee;
  1058. margin-bottom: 1em;
  1059. }
  1060. .post-content fieldset legend {
  1061. font-size: 0.8rem;
  1062. line-height: 1;
  1063. font-weight: 700;
  1064. text-transform: uppercase;
  1065. letter-spacing: 2px;
  1066. padding: 10px 12px;
  1067. background: #1ABC9C;
  1068. color: #fff;
  1069. }
  1070. .post-content label {
  1071. font-size: 1rem;
  1072. font-weight: 700;
  1073. }
  1074. .post-content input,
  1075. .post-content textarea {
  1076. font-family: 'Lato', sans-serif;
  1077. }
  1078. .post-content input[type="text"],
  1079. .post-content input[type="tel"],
  1080. .post-content input[type="url"],
  1081. .post-content input[type="email"],
  1082. .post-content input[type="password"],
  1083. .post-content textarea {
  1084. width: 100%;
  1085. padding: 14px 16px;
  1086. font-size: 0.9em;
  1087. border: none;
  1088. color: #333;
  1089. background: #f2f2f2;
  1090. border-radius: 3px;
  1091. -webkit-appearance: none;
  1092. }
  1093. .post-content input[type="file"] {
  1094. padding: 10px;
  1095. background: #f2f2f2;
  1096. border-radius: 3px;
  1097. }
  1098. .post-content textarea {
  1099. height: 180px;
  1100. line-height: 140%;
  1101. }
  1102. .post-content input[type="text"]:focus,
  1103. .post-content input[type="tel"]:focus,
  1104. .post-content input[type="url"]:focus,
  1105. .post-content input[type="email"]:focus,
  1106. .post-content input[type="password"]:focus,
  1107. .post-content textarea:focus {
  1108. outline: none;
  1109. }
  1110. .post-content input[type="submit"],
  1111. .post-content input[type="reset"],
  1112. .post-content input[type="button"] {
  1113. padding: 12px 16px;
  1114. margin: 0;
  1115. border: none;
  1116. background: #333;
  1117. color: #fff;
  1118. font-size: 0.9rem;
  1119. line-height: 1;
  1120. -webkit-appearance: none;
  1121. border-radius: 3px;
  1122. -webkit-appearance: none;
  1123. }
  1124. .post-content input[type="submit"] + input[type="reset"],
  1125. .post-content input[type="submit"] + input[type="button"],
  1126. .post-content input[type="reset"] + input[type="submit"],
  1127. .post-content input[type="reset"] + input[type="button"],
  1128. .post-content input[type="button"] + input[type="reset"],
  1129. .post-content input[type="submit"] + input[type="submit"] {
  1130. margin-left: 10px;
  1131. }
  1132. .post-content input[type="submit"]:hover,
  1133. .post-content input[type="reset"]:hover,
  1134. .post-content input[type="button"]:hover {
  1135. cursor: pointer;
  1136. background: #1ABC9C;
  1137. color: #fff;
  1138. }
  1139. .post-content input[type="submit"]:focus,
  1140. .post-content input[type="submit"]:active {
  1141. outline: none;
  1142. }
  1143. /* -------------------------------------------------------------------------------- */
  1144. /* 8. Comments
  1145. /* -------------------------------------------------------------------------------- */
  1146. .comments,
  1147. .comment-respond {
  1148. border-top: 4px solid #EEE;
  1149. padding-top: 10%;
  1150. margin-top: 10%;
  1151. }
  1152. .post-meta-bottom + .comments,
  1153. .post-meta-bottom + .comment-respond {
  1154. border-top: none;
  1155. padding-top: 0;
  1156. }
  1157. .comments-title,
  1158. #reply-title,
  1159. .pingbacks-title {
  1160. font-size: 1.75em;
  1161. font-weight: 400;
  1162. color: #2d2d2d;
  1163. }
  1164. .comments-title { margin-bottom: 10%; }
  1165. li.comment,
  1166. li > div.comment {
  1167. margin-bottom: 25px;
  1168. position: relative;
  1169. }
  1170. li > div.comment {
  1171. padding-bottom: 25px;
  1172. border-bottom: 1px solid #EEE;
  1173. }
  1174. .commentlist > li:first-child > div.comment:first-child { border-top: 1px solid #EEE; padding-top: 25px; }
  1175. .children > li > div.comment { padding-left: 10%; }
  1176. .children .children > li > div.comment { padding-left: 20%; }
  1177. .children .children .children > li > div.comment { padding-left: 30%; }
  1178. .children .children .children .children > li > div.comment { padding-left: 40%; }
  1179. .children .children .children .children .children > li > div.comment { padding-left: 50%; }
  1180. .comment .children li:last-child { margin-bottom: 0; }
  1181. .commentlist > li.comment:last-child,
  1182. .commentlist > li.comment div.comment:last-child {
  1183. margin-bottom: 0;
  1184. }
  1185. /* Pingback list --------------------------------------- */
  1186. .comments .pingbacks { margin-top: 5.5%; }
  1187. .pingbacks-inner { margin: 0 auto; }
  1188. .pingbacks-title { margin-bottom: 20px; }
  1189. .pingbacklist li {
  1190. padding: 0.5em;
  1191. line-height: 130%;
  1192. }
  1193. .pingbacklist a:hover { text-decoration: underline; }
  1194. .pingbacklist li:nth-child(odd) { background: #f9f9f9; }
  1195. .pingbacklist .comment-edit-link { color: #999; }
  1196. .pingbacklist .comment-edit-link:hover { color: #444; text-decoration: none; }
  1197. /* Comment meta --------------------------------------- */
  1198. .comment-meta { margin-bottom: 1em; }
  1199. .comment-meta .avatar {
  1200. display: block;
  1201. height: 50px;
  1202. width: 50px;
  1203. border-radius: 999px;
  1204. float: left;
  1205. }
  1206. .comment-actions {
  1207. font-size: 0.7em;
  1208. text-transform: uppercase;
  1209. letter-spacing: 1px;
  1210. font-weight: 700;
  1211. }
  1212. .comment-actions a { margin-left: 8px; }
  1213. .comment-actions a:first-child { margin-left: 0; }
  1214. .comment-meta-content {
  1215. margin-left: 70px;
  1216. padding-top: 7px;
  1217. }
  1218. .comment-meta-content cite {
  1219. font-size: 1.075em;
  1220. color: #444;
  1221. margin-bottom: 5px;
  1222. display: block;
  1223. font-weight: 700;
  1224. }
  1225. .bypostauthor .comment-meta-content cite .post-author {
  1226. font-weight: 400;
  1227. color: #999;
  1228. margin-left: 3px;
  1229. letter-spacing: 0;
  1230. }
  1231. .comment-meta-content cite a { color: #444; }
  1232. .comment-meta-content cite a:hover { color: #1abc9c; }
  1233. .comment-meta-content p {
  1234. font-size: 0.8em;
  1235. text-transform: uppercase;
  1236. }
  1237. .comment-meta-content p a { color: #BBB; }
  1238. .comment-meta-content p a:hover { color: #1abc9c; }
  1239. .comment-awaiting-moderation {
  1240. position: absolute;
  1241. right: 0;
  1242. top: 4px;
  1243. font-weight: bold;
  1244. display: block;
  1245. padding: 10px;
  1246. background: #CCC;
  1247. border-radius: 3px;
  1248. font-size: 0.8rem;
  1249. color: #FFF;
  1250. text-transform: uppercase;
  1251. letter-spacing: 1px;
  1252. }
  1253. .comment-awaiting-moderation:hover { background: #2d2d2d; }
  1254. /* Comment nav below --------------------------------------- */
  1255. .comment-nav-below {
  1256. margin-top: 10%;
  1257. margin-bottom: -5%;
  1258. border-top: 4px solid #EEE;
  1259. padding-top: 5%;
  1260. background: none;
  1261. font-size: 0.85em;
  1262. font-weight: 700;
  1263. text-transform: uppercase;
  1264. letter-spacing: 1px;
  1265. }
  1266. .comment-nav-below a { color: #666; }
  1267. /* Comment content --------------------------------------- */
  1268. .comment-content {
  1269. margin-left: 70px;
  1270. font-size: 1em;
  1271. }
  1272. .comment-content h1,
  1273. .comment-content h2,
  1274. .comment-content h3,
  1275. .comment-content h4,
  1276. .comment-content h5,
  1277. .comment-content h6 {
  1278. font-size: 1.25em;
  1279. font-weight: 500;
  1280. margin-top: 50px;
  1281. margin-bottom: 10px;
  1282. text-transform: none;
  1283. }
  1284. /* Respond --------------------------------------- */
  1285. .comment-respond { border-top: 0; padding-top: 0; }
  1286. .comments + .comment-respond {
  1287. padding-top: 10%;
  1288. border-top: 4px solid #EEE;
  1289. margin-top: 10%;
  1290. }
  1291. #reply-title { margin-bottom: 20px; }
  1292. #respond a:hover { text-decoration: underline; }
  1293. #respond .content-section-right {
  1294. border-radius: 0 0 4px 4px;
  1295. border-top: 1px solid #EEE;
  1296. z-index: 12;
  1297. }
  1298. .nocomments {
  1299. margin-top: 10%;
  1300. color: #666;
  1301. text-align: center;
  1302. }
  1303. #cancel-comment-reply-link {
  1304. margin-left: 10px;
  1305. font-size: 0.9rem;
  1306. text-transform: uppercase;
  1307. letter-spacing: 1px;
  1308. font-weight: 700;
  1309. }
  1310. #respond p,
  1311. #respond code {
  1312. line-height: 150%;
  1313. }
  1314. #respond code { border-radius: 2px; }
  1315. .comment-form p { margin-bottom: 20px; }
  1316. .comment-form p:last-child { margin-bottom: 0; }
  1317. p.comment-notes,
  1318. p.logged-in-as {
  1319. margin-bottom: 10%;
  1320. color: #666;
  1321. }
  1322. #respond form label,
  1323. .comment-form .required { display: none; }
  1324. .comment-form input[type="text"],
  1325. .comment-form input[type="email"],
  1326. .comment-form input.password,
  1327. .comment-form textarea {
  1328. -webkit-appearance: none;
  1329. border: none;
  1330. background: #FAFAFA;
  1331. font-size: 1em;
  1332. color: #444;
  1333. font-family: 'Lato', 'Helvetica Neue', sans-serif;
  1334. border-radius: 3px;
  1335. padding: 16px;
  1336. margin: 0;
  1337. width: 100%;
  1338. border: 1px solid #EEE;
  1339. }
  1340. .comment-form textarea { line-height: 160%; height: 250px; }
  1341. .comment-form input[type="text"]:focus,
  1342. .comment-form input[type="email"]:focus,
  1343. .comment-form input.password:focus,
  1344. .comment-form textarea:focus {
  1345. outline: none;
  1346. background-color: #EEE;
  1347. color: #444;
  1348. }
  1349. .comment-form input { max-width: 75%; }
  1350. .comment-form input[type="submit"] {
  1351. width: auto;
  1352. max-width: none;
  1353. padding: 16px 18px;
  1354. margin-bottom: 0;
  1355. border: none;
  1356. background: #1D1D1D;
  1357. color: #FFF;
  1358. font-family: 'Lato', sans-serif;
  1359. font-size: 0.925rem;
  1360. border-radius: 4px;
  1361. }
  1362. .comment-form input[type="submit"]:hover {
  1363. cursor: pointer;
  1364. background: #1abc9c;
  1365. color: #FFF;
  1366. }
  1367. .comment-form input[type="submit"]:active {
  1368. top: 1px;
  1369. position: relative;
  1370. }
  1371. p.form-allowed-tags {
  1372. margin-top: 1.5em;
  1373. line-height: 160%
  1374. }
  1375. .comment-form p.form-submit { margin: 1.5em 0 0; }
  1376. /* In Commentlist */
  1377. .commentlist .comment-respond {
  1378. margin: 25px 0;
  1379. padding-bottom: 25px;
  1380. border-bottom: 1px solid #eee;
  1381. }
  1382. .commentlist .comment-reply-title { margin-bottom: 10px; }
  1383. .commentlist p.comment-notes,
  1384. .commentlist p.logged-in-as {
  1385. margin-bottom: 20px;
  1386. }
  1387. /* -------------------------------------------------------------------------------- */
  1388. /* 9. Pagination
  1389. /* -------------------------------------------------------------------------------- */
  1390. .page-title {
  1391. margin-bottom: 7.5%;
  1392. text-align: center;
  1393. }
  1394. .page-title h4 {
  1395. position: relative;
  1396. display: inline-block;
  1397. text-transform: uppercase;
  1398. font-size: 0.9em;
  1399. letter-spacing: 1px;
  1400. font-weight: 700;
  1401. color: #999;
  1402. padding-bottom: 5px;
  1403. border-bottom: 2px solid #EEE;
  1404. }
  1405. /* Archive nav --------------------------------------- */
  1406. .archive-nav { margin-top: 15%; }
  1407. .archive-nav a {
  1408. font-weight: 700;
  1409. font-size: 0.9rem;
  1410. text-transform: uppercase;
  1411. letter-spacing: 1px;
  1412. }
  1413. .archive-nav a:hover { color: #1abc9c; }
  1414. .archive-nav .post-nav-older { float: left; }
  1415. .archive-nav .post-nav-newer { float: right; }
  1416. /* -------------------------------------------------------------------------------- */
  1417. /* 10. Page & Page Templates
  1418. /* -------------------------------------------------------------------------------- */
  1419. /* Search --------------------------------------- */
  1420. .post-content .searchform { position: relative; }
  1421. .post-content .searchform input { height: 60px; }
  1422. .post-content .searchform input#s {
  1423. -webkit-appearance: none;
  1424. width: 99%;
  1425. padding: 18px 95px 18px 18px;
  1426. background: #FFF;
  1427. border: 1px solid #DDD;
  1428. border-right: none;
  1429. font-family: 'Lato', sans-serif;
  1430. font-size: 1rem;
  1431. border-radius: 3px 0 0 3px;
  1432. }
  1433. .post-content .searchform #s:focus {
  1434. outline: none;
  1435. background: #EEE;
  1436. color: #444;
  1437. }
  1438. .post-content .searchform #searchsubmit {
  1439. -webkit-appearance: none;
  1440. position: absolute;
  1441. right: 0;
  1442. top: 0;
  1443. width: 85px;
  1444. line-height: 1;
  1445. border: none;
  1446. background: #1abc9c;
  1447. border: 1px solid #1abc9c;
  1448. color: #FFF;
  1449. text-transform: uppercase;
  1450. letter-spacing: 1px;
  1451. font-size: 0.8rem;
  1452. font-family: 'Lato', sans-serif;
  1453. border-radius: 0 3px 3px 0;
  1454. }
  1455. .post-content .searchform #searchsubmit:hover {
  1456. cursor: pointer;
  1457. background-color: #089D80;
  1458. border-color: #089D80;
  1459. }
  1460. /* Archives template --------------------------------------- */
  1461. .archive-col { font-size: 0.9em; }
  1462. .page-template-template-archives-php .post-content ul {
  1463. margin-left: 0;
  1464. list-style: none;
  1465. }
  1466. .page-template-template-archives-php .post-content ul li { margin-bottom: 0; line-height: 130%; }
  1467. .page-template-template-archives-php .post-content ul li a {
  1468. display: block;
  1469. border-bottom: 1px solid #EEE;
  1470. padding: 8px 0;
  1471. }
  1472. .page-template-template-archives-php .post-content ul li:last-child a { border-bottom: none; }
  1473. .page-template-template-archives-php .post-content ul.children li:first-child a { border-bottom: 1px solid #EEE; }
  1474. .page-template-template-archives-php .post-content ul li a span { color: #999; }
  1475. .page-template-template-archives-php .post-content ul li a:hover {
  1476. text-decoration: none;
  1477. color: #666;
  1478. }
  1479. .page-template-template-archives-php .post-content ul li a:hover {
  1480. background-color: #F9F9F9;
  1481. padding-left: 12px;
  1482. }
  1483. /* -------------------------------------------------------------------------------- */
  1484. /* 11. Sidebar
  1485. /* -------------------------------------------------------------------------------- */
  1486. .widget {
  1487. padding-bottom: 15%;
  1488. border-bottom: 4px solid #EEE;
  1489. margin-bottom: 15%;
  1490. }
  1491. .widget:last-child {
  1492. padding-bottom: 0;
  1493. border-bottom: 0;
  1494. margin-bottom: 0;
  1495. }
  1496. .widget-title {
  1497. font-family: 'Raleway', sans-serif;
  1498. font-size: 1.1rem;
  1499. text-transform: uppercase;
  1500. font-weight: 700;
  1501. margin-bottom: 20px;
  1502. color: #444;
  1503. }
  1504. /* widget-content */
  1505. .widget-content {
  1506. color: #555;
  1507. font-size: 1rem;
  1508. line-height: 140%;
  1509. }
  1510. .widget-content *:last-child { margin-bottom: 0; }
  1511. .widget-content a:hover { text-decoration: underline }
  1512. .widget-content p {
  1513. line-height: 150%;
  1514. margin-bottom: 1em;
  1515. }
  1516. .widget-content ul li {
  1517. padding: 10px 0;
  1518. border-top: 1px solid #EEE;
  1519. line-height: 130%;
  1520. }
  1521. .widget-content li ul > li:first-child { margin-top: 10px; }
  1522. .widget-content .page_item_has_children { padding-bottom: 0; }
  1523. .widget-content li ul li { padding-left: 15px; }
  1524. .widget-content ul li .post-date { margin-left: 5px; color: #999; }
  1525. .widget-content > ul > li:first-child { border-top: 0; }
  1526. /* Widget search --------------------------------------- */
  1527. .widget_search form { position: relative; }
  1528. .widget_search input { height: 52px; }
  1529. .widget_search input#s {
  1530. -webkit-appearance: none;
  1531. width: 99%;
  1532. padding: 18px 95px 18px 18px;
  1533. background: #FFF;
  1534. border: 1px solid #DDD;
  1535. border-right: none;
  1536. font-family: 'Lato', sans-serif;
  1537. font-size: 1rem;
  1538. border-radius: 3px 0 0 3px;
  1539. }
  1540. .widget_search #s:focus {
  1541. outline: none;
  1542. background: #EEE;
  1543. color: #444;
  1544. }
  1545. .widget_search #searchsubmit {
  1546. -webkit-appearance: none;
  1547. position: absolute;
  1548. right: 0;
  1549. top: 0;
  1550. width: 85px;
  1551. line-height: 1;
  1552. border: none;
  1553. background: #1abc9c;
  1554. border: 1px solid #1abc9c;
  1555. color: #FFF;
  1556. text-transform: uppercase;
  1557. letter-spacing: 1px;
  1558. font-size: 0.8rem;
  1559. font-family: 'Lato', sans-serif;
  1560. border-radius: 0 3px 3px 0;
  1561. }
  1562. .widget_search #searchsubmit:hover {
  1563. cursor: pointer;
  1564. background-color: #089D80;
  1565. border-color: #089D80;
  1566. }
  1567. /* Widget calendar --------------------------------------- */
  1568. #wp-calendar {
  1569. color: #888;
  1570. width: 100%;
  1571. max-width: 100%;
  1572. text-align: center;
  1573. font-size: 0.9em;
  1574. }
  1575. #wp-calendar a { color: #1abc9c; }
  1576. #wp-calendar,
  1577. #wp-calendar caption,
  1578. #wp-calendar tr,
  1579. #wp-calendar td,
  1580. #wp-calendar th {
  1581. text-align: center;
  1582. }
  1583. #wp-calendar caption,
  1584. #wp-calendar th,
  1585. #wp-calendar td {
  1586. padding: 4% 2%;
  1587. }
  1588. #wp-calendar caption,
  1589. #wp-calendar thead {
  1590. color: #666;
  1591. border-bottom: 1px solid #EEE;
  1592. }
  1593. #wp-calendar caption { text-transform: capitalize; }
  1594. #wp-calendar thead th {
  1595. font-weight: bold;
  1596. text-transform: uppercase;
  1597. font-size: 0.9em;
  1598. }
  1599. #wp-calendar tfoot { border-top: 1px solid #EEE; }
  1600. #wp-calendar tfoot td { padding: 0; }
  1601. #wp-calendar tfoot #prev { text-align: left; }
  1602. #wp-calendar tfoot #next { text-align: right; }
  1603. #wp-calendar tfoot a {
  1604. display: block;
  1605. color: #999;
  1606. padding: 0.6em;
  1607. }
  1608. #wp-calendar tfoot a:hover {
  1609. text-decoration: none;
  1610. color: #1abc9c;
  1611. background: rgba(255, 255, 255, .05);
  1612. }
  1613. /* Widget tag cloud --------------------------------------- */
  1614. .widget_tag_cloud .tagcloud a { font-size: 0.9em !important; }
  1615. .tagcloud a {
  1616. display: block;
  1617. float: left;
  1618. padding: 8px 11px;
  1619. line-height: 1;
  1620. margin: 0 5px 5px 0;
  1621. background: #BBB;
  1622. color: #FFF;
  1623. border-radius: 3px;
  1624. }
  1625. .tagcloud a:hover {
  1626. background: #1abc9c;
  1627. text-decoration: none;
  1628. color: #FFF;
  1629. }
  1630. /* Widget Flickr --------------------------------------- */
  1631. .flickr_badge_image {
  1632. width: 30%;
  1633. margin-bottom: 5%;
  1634. margin-left: 5%;
  1635. overflow: hidden;
  1636. float: left;
  1637. line-height: 0;
  1638. }
  1639. #flickr_badge_image1,
  1640. #flickr_badge_image4,
  1641. #flickr_badge_image7,
  1642. #flickr_badge_image10,
  1643. #flickr_badge_image13,
  1644. #flickr_badge_image16,
  1645. #flickr_badge_image19,
  1646. #flickr_badge_image22,
  1647. #flickr_badge_image25 {
  1648. margin-left: 0;
  1649. }
  1650. .flickr_badge_image img {
  1651. display: block;
  1652. padding: 5px;
  1653. background: #EEE;
  1654. }
  1655. .flickr_badge_image a:hover img { background: #1abc9c; }
  1656. .widgetmore a {
  1657. display: block;
  1658. clear: both;
  1659. padding: 0.5em 0;
  1660. }
  1661. /* Widget Dribbble --------------------------------------- */
  1662. .dribbble-shot {
  1663. display: block;
  1664. width: 47.5%;
  1665. margin-bottom: 5%;
  1666. margin-right: 5%;
  1667. overflow: hidden;
  1668. float: left;
  1669. line-height: 0;
  1670. }
  1671. .dribbble-shot:nth-child(2n) { margin-right: 0; }
  1672. .dribbble-shot img {
  1673. display: block;
  1674. padding: 5px;
  1675. background: #EEE;
  1676. }
  1677. .dribbble-shot:hover img { background: #1abc9c; }
  1678. /* -------------------------------------------------------------------------------- */
  1679. /* 12. Footer
  1680. /* -------------------------------------------------------------------------------- */
  1681. .footer {
  1682. font-size: 0.9em;
  1683. margin-top: 7.5%;
  1684. }
  1685. .column {
  1686. width: 30%;
  1687. margin-left: 5%;
  1688. }
  1689. .column:first-child { margin-left: 0; }
  1690. /* Footer widgets --------------------------------------- */
  1691. .footer .widget { border-bottom-color: rgba(255,255,255,0.1) }
  1692. .footer .widget-title { color: #EEE; letter-spacing: 1px; font-weight: 600; }
  1693. .footer .widget-content { color: #666; }
  1694. .footer .widget-content ul li { border-top-color: rgba(255,255,255,0.1); }
  1695. .footer .widget-content > ul > li:first-child { border-top: none; }
  1696. /* Widget search --------------------------------------- */
  1697. .footer .widget_search #s:focus {
  1698. outline: none;
  1699. background: #FFF;
  1700. border-color: #DDD;
  1701. color: #444;
  1702. }
  1703. /* Widget calendar --------------------------------------- */
  1704. #wp-calendar caption,
  1705. #wp-calendar thead { border-bottom-color: rgba(255,255,255,0.1); }
  1706. #wp-calendar tfoot { border-top-color: rgba(255,255,255,0.1); }
  1707. .footer .flickr_badge_image img,
  1708. .footer .dribbble-shot img { background: rgba(255,255,255,0.1); }
  1709. .footer .flickr_badge_image a:hover img,
  1710. .footer .dribbble-shot:hover img { background: #1abc9c; }
  1711. /* Widget tag cloud --------------------------------------- */
  1712. .footer .tagcloud a { background-color: rgba(255,255,255,0.1); color: #FFF; }
  1713. .footer .tagcloud a:hover { background-color: #1abc9c; color: #FFF; }
  1714. /* -------------------------------------------------------------------------------- */
  1715. /* 13. Credits
  1716. /* -------------------------------------------------------------------------------- */
  1717. .credits.no-padding { font-size: 0.8rem; }
  1718. .credits-inner {
  1719. padding: 25px 0 4%;
  1720. border-top: 2px solid rgba(255,255,255,0.1);
  1721. text-transform: uppercase;
  1722. letter-spacing: 1px;
  1723. }
  1724. .credits,
  1725. .credits a { color: #666; }
  1726. .credits-left { float: left; }
  1727. .credits-right { float: right; }
  1728. .tothetop:hover { cursor: pointer; }
  1729. img#wpstats { display: none; }
  1730. /* -------------------------------------------------------------------------------- */
  1731. /* 14. Responsive
  1732. /* -------------------------------------------------------------------------------- */
  1733. @media (max-width: 1040px) {
  1734. body { font-size: 16px; }
  1735. /* Structure --------------------------------------- */
  1736. .wrapper { margin-top: 7.5%; }
  1737. }
  1738. @media (max-width: 800px) {
  1739. body { font-size: 18px; }
  1740. /* Structure --------------------------------------- */
  1741. .content,
  1742. .sidebar {
  1743. width: 100%;
  1744. float: none;
  1745. }
  1746. .sidebar { display: none; }
  1747. .section.large-padding,
  1748. .section.medium-padding { padding: 40px 0; }
  1749. .footer { margin-top: 60px; }
  1750. /* Navigation --------------------------------------- */
  1751. .navigation-inner { max-width: 100%; }
  1752. .blog-menu { display: none; }
  1753. .toggle-container {
  1754. display: block;
  1755. background: #1D1D1D;
  1756. }
  1757. .toggle {
  1758. display: inline-block;
  1759. position: relative;
  1760. height: 57px;
  1761. width: 32px;
  1762. padding: 20px 0px;
  1763. }
  1764. .toggle:hover { cursor: pointer; }
  1765. .nav-toggle { float: left; margin-left: 7%; }
  1766. .search-toggle { float: right; margin-right: 7%; }
  1767. .nav-toggle:hover { cursor: pointer; }
  1768. .nav-toggle .bar {
  1769. display: block;
  1770. width: 24px;
  1771. height: 3px;
  1772. margin-top: 4px;
  1773. background: #666;
  1774. }
  1775. .nav-toggle .bar:first-child { margin-top: 0; }
  1776. .nav-toggle.active .bar { background-color: #FFF; }
  1777. .search-toggle .metal,
  1778. .search-toggle .glass,
  1779. .search-toggle .handle {
  1780. position: absolute;
  1781. }
  1782. .search-toggle .metal {
  1783. width: 24px;
  1784. height: 24px;
  1785. top: 14px;
  1786. left: 6px;
  1787. border-radius: 999px;
  1788. background: #555;
  1789. }
  1790. .search-toggle .glass {
  1791. width: 14px;
  1792. height: 14px;
  1793. top: 19px;
  1794. left: 11px;
  1795. border-radius: 999px;
  1796. background: #1D1D1D;
  1797. }
  1798. .search-toggle .handle {
  1799. height: 5px;
  1800. width: 14px;
  1801. top: 36px;
  1802. left: 0px;
  1803. background: #555;
  1804. border-radius: 2px 0 0 2px;
  1805. -webkit-transform: rotate(-45deg);
  1806. -moz-transform: rotate(-45deg);
  1807. -ms-transform: rotate(-45deg);
  1808. -o-transform: rotate(-45deg);
  1809. transform: rotate(-45deg);
  1810. }
  1811. .search-toggle.active .metal,
  1812. .search-toggle.active .handle { background: #FFF; }
  1813. .blog-search,
  1814. .navigation { background: #282828; }
  1815. .mobile-menu a {
  1816. display: block;
  1817. padding: 24px;
  1818. font-size: 12px;
  1819. border-bottom: 1px solid rgba(255,255,255,0.1);
  1820. background: #282828;
  1821. display: block;
  1822. text-transform: uppercase;
  1823. letter-spacing: 1px;
  1824. color: rgba(255,255,255,0.4);
  1825. font-size: 13px;
  1826. }
  1827. .mobile-menu a:hover,
  1828. .mobile-menu .current-menu-item a { color: #FFF; }
  1829. .mobile-menu ul a { width: 100%; }
  1830. .mobile-menu ul a { padding-left: 40px; }
  1831. .mobile-menu ul ul a { padding-left: 60px; }
  1832. .mobile-menu ul ul ul a { padding-left: 80px; }
  1833. .mobile-menu ul ul ul ul a { padding-left: 100px; }
  1834. .mobile-menu ul ul ul ul ul a { padding-left: 120px; }
  1835. .blog-search { padding: 8%; }
  1836. .blog-search .searchform {
  1837. position: relative;
  1838. overflow: hidden;
  1839. }
  1840. .blog-search #s {
  1841. width: 97.5%;
  1842. padding: 18px 100px 18px 20px;
  1843. background: #FFF;
  1844. font-family: 'Lato', sans-serif;
  1845. font-size: 1em;
  1846. color: #444;
  1847. border: none;
  1848. border-radius: 4px 0 0 4px;
  1849. margin: 0;
  1850. }
  1851. .blog-search #s:focus { outline: none; }
  1852. .blog-search #searchsubmit {
  1853. -webkit-appearance: none;
  1854. position: absolute;
  1855. right: 0;
  1856. top: 0;
  1857. width: 85px;
  1858. padding: 20px 0;
  1859. line-height: 1;
  1860. border: none;
  1861. margin: 0;
  1862. background: #1abc9c;
  1863. border: 1px solid #1abc9c;
  1864. color: #FFF;
  1865. text-transform: uppercase;
  1866. letter-spacing: 1px;
  1867. font-size: 0.8rem;
  1868. font-family: 'Lato', sans-serif;
  1869. border-radius: 0 4px 4px 0;
  1870. }
  1871. .blog-search #searchsubmit:hover {
  1872. cursor: pointer;
  1873. background-color: #089D80;
  1874. border-color: #089D80;
  1875. }
  1876. /* Pagination --------------------------------------- */
  1877. .archive-nav { margin-top: 60px; }
  1878. }
  1879. @media (max-width: 700px) {
  1880. body { font-size: 16px; }
  1881. /* Header --------------------------------------- */
  1882. .header.section { padding: 60px 0; }
  1883. .blog-info { padding: 20px; }
  1884. .blog-description:before { margin: 15px auto; }
  1885. /* Main content --------------------------------------- */
  1886. .post {
  1887. padding-bottom: 35px;
  1888. margin-bottom: 35px;
  1889. }
  1890. .post:last-child { padding-bottom: 0; border-bottom: none; margin-bottom: 0; }
  1891. .featured-media { margin-bottom: 25px; }
  1892. .post-header { margin-bottom: 25px; }
  1893. .post-title { margin-bottom: 12px; }
  1894. .post-meta-bottom { margin-top: 40px; }
  1895. /* Post content --------------------------------------- */
  1896. .post-content h1,
  1897. .post-content h2,
  1898. .post-content h3,
  1899. .post-content h4,
  1900. .post-content h5,
  1901. .post-content h6 {
  1902. margin-top: 30px;
  1903. margin-bottom: 10px;
  1904. }
  1905. /* Comments --------------------------------------- */
  1906. .comments { padding-top: 30px; margin-top: 30px; }
  1907. .comments-title, #reply-title { font-size: 1.5em; }
  1908. .comments-title { margin-bottom: 30px; }
  1909. .comment-meta-content { padding-top: 9px; }
  1910. .comment-actions { margin-top: 10px; }
  1911. .comment-meta .comment-actions { display: none; }
  1912. .comment-content .comment-actions {
  1913. display: block;
  1914. position: relative;
  1915. top: auto;
  1916. right: auto;
  1917. margin-top: 1em;
  1918. }
  1919. .comment-content h1,
  1920. .comment-content h2,
  1921. .comment-content h3,
  1922. .comment-content h4,
  1923. .comment-content h5,
  1924. .comment-content h6 {
  1925. margin-top: 30px;
  1926. margin-bottom: 10px;
  1927. }
  1928. /* Respond --------------------------------------- */
  1929. .comment-respond { margin-top: 30px; }
  1930. #reply-title { margin-bottom: 10px; }
  1931. .comment-form input { max-width: 100%; }
  1932. .comment-form p { margin-bottom: 15px; }
  1933. p.comment-notes,
  1934. p.logged-in-as {
  1935. margin-bottom: 30px;
  1936. }
  1937. .comment-form textarea { height: 180px; }
  1938. /* Footer --------------------------------------- */
  1939. .footer { margin-top: 60px; }
  1940. .footer .column {
  1941. width: 100%;
  1942. margin-left: 0;
  1943. padding-top: 40px;
  1944. border-top: 4px solid rgba(255,255,255,0.1);
  1945. margin-top: 40px;
  1946. }
  1947. .footer .column:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
  1948. .widget {
  1949. margin-bottom: 40px;
  1950. border-bottom: 4px solid rgba(255,255,255,0.1);
  1951. padding-bottom: 40px;
  1952. }
  1953. /* Credits --------------------------------------- */
  1954. .credits.section { border-top: 1px solid rgba(255,255,255,0.1); }
  1955. .credits-inner {
  1956. padding: 30px 0;
  1957. border-top: 0;
  1958. text-align: center;
  1959. }
  1960. .credits p { float: none; display: inline; }
  1961. .credits .right,
  1962. .credits span { display: none; }
  1963. }
  1964. @media (max-width: 500px) {
  1965. body { font-size: 15px; }
  1966. /* Header --------------------------------------- */
  1967. .header.section { padding: 30px 0; }
  1968. /* Post --------------------------------------- */
  1969. .post-title { font-size: 1.75em; }
  1970. .post-author { display: none; }
  1971. .post-header .date-sep:nth-of-type(2) { display: none; }
  1972. .media-caption-container {
  1973. position: static;
  1974. top: auto;
  1975. left: auto;
  1976. width: 100%;
  1977. margin: -3px 0 0 0;
  1978. }
  1979. .media-caption {
  1980. padding: 10px;
  1981. border-radius: 0 0 4px 4px;
  1982. background: #EEE;
  1983. color: #666;
  1984. width: 100%;
  1985. }
  1986. .media-caption:hover { background: #EEE; color: #666; }
  1987. /* Single post --------------------------------------- */
  1988. .post-cat-tags p { display: block; }
  1989. .post-cat-tags p:last-child { margin-left: 0; margin-top: 10px; }
  1990. .single .post-nav { padding: 0; font-size: 1em; }
  1991. .single .post-nav a,
  1992. .single .post-nav .post-nav-newer {
  1993. max-width: 100%;
  1994. float: none;
  1995. text-align: left;
  1996. padding: 20px 0;
  1997. }
  1998. .single .post-nav .post-nav-newer { border-top: 1px solid #EEE; }
  1999. .single .post-nav .post-nav-newer h5 { text-align: left; }
  2000. /* Post formats --------------------------------------- */
  2001. .blog .format-quote .post-content,
  2002. .archive .format-quote .post-content,
  2003. .search .format-quote .post-content {
  2004. padding: 20px;
  2005. }
  2006. .blog .format-quote .post-content blockquote,
  2007. .archive .format-quote .post-content blockquote,
  2008. .search .format-quote .post-content blockquote {
  2009. font-size: 1em;
  2010. }
  2011. .blog .format-quote .post-content blockquote cite,
  2012. .archive .format-quote .post-content blockquote cite,
  2013. .search .format-quote .post-content blockquote cite {
  2014. font-size: 0.75rem;
  2015. }
  2016. /* Post content --------------------------------------- */
  2017. .post-content .alignleft,
  2018. .post-content .alignright {
  2019. float: none;
  2020. max-width: 100%;
  2021. margin: 0 auto 1.2em auto;
  2022. }
  2023. .post-content .alignleft img,
  2024. .post-content .alignright img {
  2025. display: block;
  2026. margin: 0 auto;
  2027. }
  2028. /* Comments --------------------------------------- */
  2029. .comment-meta-content { margin-left: 65px; }
  2030. .comment-content { margin-left: 0; }
  2031. /* Pagination --------------------------------------- */
  2032. .archive-nav { margin-top: 40px; }
  2033. .archive-nav a { font-size: 0.8rem; }
  2034. .post-nav span,
  2035. .archive-nav span,
  2036. .comment-nav-below span { display: none; }
  2037. /* Footer --------------------------------------- */
  2038. .footer { margin-top: 40px; }
  2039. }