style.css 58 KB

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