style_BU.css 52 KB

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