style.css 58 KB

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