style.css 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591
  1. /*
  2. Theme Name: Rebalance
  3. Theme URI: https://wordpress.org/themes/rebalance/
  4. Author: Automattic
  5. Author URI: http://wordpress.com/themes/
  6. Description: Rebalance is a new spin on the classic Imbalance 2 portfolio theme. It is a simple, modern theme for photographers, artists, and graphic designers looking to showcase their work.
  7. Version: 1.1.14-wpcom
  8. License: GNU General Public License v2 or later
  9. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  10. Text Domain: rebalance
  11. Tags: custom-background, custom-colors, custom-menu, featured-content-with-pages, featured-images, grid-layout, one-column, portfolio, responsive-layout, theme-options, threaded-comments, three-columns, translation-ready, two-columns
  12. Rebalance WordPress Theme, Copyright 2017 Automattic, Inc.
  13. Rebalance is distributed under the terms of the GNU GPL.
  14. This theme, like WordPress, is licensed under the GPL.
  15. Use it to make something cool, have fun, and share what you've learned with others.
  16. Rebalance is based on Underscores http://underscores.me/, (C) 2012-2017 Automattic, Inc.
  17. Underscores is distributed under the terms of the GNU GPL v2 or later.
  18. Normalizing styles have been helped along thanks to the fine work of
  19. Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
  20. */
  21. /*--------------------------------------------------------------*/
  22. /* !# TABLE OF CONTENTS */
  23. /*--------------------------------------------------------------*/
  24. /*----------------------------------------------------------------
  25. # Normalize
  26. ## Typography
  27. ## Elements
  28. ## Links
  29. ## Forms
  30. # Theme Globals
  31. # Layout
  32. # Accessibility
  33. # Alignments
  34. # Clearings
  35. # Header
  36. # Navigation
  37. ## Toggle Navigation
  38. ## Main Navigation
  39. ## Social Navigation
  40. # Widgets
  41. # Content
  42. ## Posts and Pages
  43. ## Featured Project
  44. ## Author Meta
  45. ## Single Post
  46. ## Single Jetpack Portfolio
  47. ## Page
  48. ## Archive
  49. ## Masonry
  50. ## Infinite scroll
  51. ## 404 Error
  52. ## Asides
  53. # Media
  54. ## Captions
  55. ## Galleries
  56. # Pagination
  57. # Comments
  58. ## Comments Respond
  59. ## Widgets
  60. ## Secondary
  61. # Footer
  62. # Extras
  63. ----------------------------------------------------------------*/
  64. /*--------------------------------------------------------------*/
  65. /* !# Normalize */
  66. /*--------------------------------------------------------------*/
  67. html {
  68. font-family: sans-serif;
  69. -webkit-text-size-adjust: 100%;
  70. -ms-text-size-adjust: 100%;
  71. }
  72. body {
  73. margin: 0;
  74. }
  75. article,
  76. aside,
  77. details,
  78. figcaption,
  79. figure,
  80. footer,
  81. header,
  82. main,
  83. menu,
  84. nav,
  85. section,
  86. summary {
  87. display: block;
  88. }
  89. audio,
  90. canvas,
  91. progress,
  92. video {
  93. display: inline-block;
  94. vertical-align: baseline;
  95. }
  96. audio:not([controls]) {
  97. display: none;
  98. height: 0;
  99. }
  100. [hidden],
  101. template {
  102. display: none;
  103. }
  104. a {
  105. background-color: transparent;
  106. }
  107. a:active,
  108. a:hover {
  109. outline: 0;
  110. }
  111. abbr[title] {
  112. border-bottom: 1px dotted;
  113. }
  114. b,
  115. strong {
  116. font-weight: bold;
  117. }
  118. dfn {
  119. font-style: italic;
  120. }
  121. h1 {
  122. font-size: 2em;
  123. margin: 0.67em 0;
  124. }
  125. mark {
  126. background: #ff0;
  127. color: #000;
  128. }
  129. small {
  130. font-size: 80%;
  131. }
  132. sub,
  133. sup {
  134. font-size: 75%;
  135. line-height: 0;
  136. position: relative;
  137. vertical-align: baseline;
  138. }
  139. sup {
  140. top: -0.5em;
  141. }
  142. sub {
  143. bottom: -0.25em;
  144. }
  145. img {
  146. border: 0;
  147. }
  148. svg:not(:root) {
  149. overflow: hidden;
  150. }
  151. figure {
  152. margin: 1em 40px;
  153. }
  154. hr {
  155. box-sizing: content-box;
  156. height: 0;
  157. }
  158. pre {
  159. overflow: auto;
  160. }
  161. code,
  162. kbd,
  163. pre,
  164. samp {
  165. font-family: monospace, monospace;
  166. font-size: 1em;
  167. }
  168. button,
  169. input,
  170. optgroup,
  171. select,
  172. textarea {
  173. color: inherit;
  174. font: inherit;
  175. margin: 0;
  176. }
  177. button {
  178. overflow: visible;
  179. }
  180. button,
  181. select {
  182. text-transform: none;
  183. }
  184. button,
  185. html input[type="button"],
  186. input[type="reset"],
  187. input[type="submit"] {
  188. cursor: pointer;
  189. -webkit-appearance: button;
  190. }
  191. button[disabled],
  192. html input[disabled] {
  193. cursor: default;
  194. }
  195. button::-moz-focus-inner,
  196. input::-moz-focus-inner {
  197. border: 0;
  198. padding: 0;
  199. }
  200. input {
  201. line-height: normal;
  202. }
  203. input[type="checkbox"],
  204. input[type="radio"] {
  205. box-sizing: border-box;
  206. padding: 0;
  207. }
  208. input[type="number"]::-webkit-inner-spin-button,
  209. input[type="number"]::-webkit-outer-spin-button {
  210. height: auto;
  211. }
  212. input[type="search"] {
  213. box-sizing: content-box;
  214. -webkit-appearance: textfield;
  215. }
  216. input[type="search"]::-webkit-search-cancel-button,
  217. input[type="search"]::-webkit-search-decoration {
  218. -webkit-appearance: none;
  219. }
  220. fieldset {
  221. border: 1px solid #c0c0c0;
  222. margin: 0 2px;
  223. padding: 0.35em 0.625em 0.75em;
  224. }
  225. legend {
  226. border: 0;
  227. padding: 0;
  228. }
  229. textarea {
  230. overflow: auto;
  231. }
  232. optgroup {
  233. font-weight: bold;
  234. }
  235. table {
  236. border-collapse: collapse;
  237. border-spacing: 0;
  238. }
  239. td,
  240. th {
  241. padding: 0;
  242. }
  243. /*--------------------------------------------------------------*/
  244. /* !## Typography */
  245. /*--------------------------------------------------------------*/
  246. body,
  247. button,
  248. input,
  249. select,
  250. textarea {
  251. color: #555;
  252. font-family: sans-serif;
  253. font-size: 16px;
  254. font-size: 1rem;
  255. line-height: 1.5;
  256. }
  257. h1,
  258. h2,
  259. h3,
  260. h4,
  261. h5,
  262. h6 {
  263. clear: both;
  264. margin: 0;
  265. }
  266. p {
  267. margin: 0 0 1.5em;
  268. }
  269. dfn,
  270. cite,
  271. em,
  272. i {
  273. font-style: italic;
  274. }
  275. blockquote {
  276. margin: 0 1.5em;
  277. }
  278. address {
  279. margin: 0 0 1.5em;
  280. }
  281. pre {
  282. background: #CCC;
  283. color: #FFF;
  284. font-family: "Courier 10 Pitch", Courier, monospace;
  285. font-size: 15px;
  286. font-size: 0.9375rem;
  287. line-height: 1.6;
  288. margin-bottom: 1.6em;
  289. max-width: 100%;
  290. overflow: auto;
  291. padding: 1.6em;
  292. }
  293. code,
  294. kbd,
  295. tt,
  296. var {
  297. font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  298. font-size: 15px;
  299. font-size: 0.9375rem;
  300. }
  301. abbr,
  302. acronym {
  303. border-bottom: 1px dotted #666;
  304. cursor: help;
  305. }
  306. mark,
  307. ins {
  308. background: #FFF9C0;
  309. text-decoration: none;
  310. }
  311. big {
  312. font-size: 125%;
  313. }
  314. /*--------------------------------------------------------------*/
  315. /* !## Elements */
  316. /*--------------------------------------------------------------*/
  317. html {
  318. box-sizing: border-box;
  319. }
  320. *,
  321. *:before,
  322. *:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  323. box-sizing: inherit;
  324. }
  325. body {
  326. background: #fff; /* Fallback for when there is no custom background color defined. */
  327. }
  328. blockquote:before,
  329. blockquote:after,
  330. q:before,
  331. q:after {
  332. content: "";
  333. }
  334. blockquote,
  335. q {
  336. quotes: "" "";
  337. }
  338. hr {
  339. background-color: #CCC;
  340. border: 0;
  341. height: 1px;
  342. margin-bottom: 1.5em;
  343. }
  344. ul,
  345. ol {
  346. margin: 0 0 1.5em 2em;
  347. padding: 0;
  348. }
  349. ul {
  350. list-style: disc;
  351. }
  352. ol {
  353. list-style: decimal;
  354. }
  355. li > ul,
  356. li > ol {
  357. margin-bottom: 0;
  358. margin-left: 1.5em;
  359. }
  360. dt {
  361. font-weight: bold;
  362. }
  363. dd {
  364. margin: 0 1.5em 1.5em;
  365. }
  366. img {
  367. height: auto; /* Make sure images are scaled correctly. */
  368. max-width: 100%; /* Adhere to container width. */
  369. }
  370. table {
  371. margin: 0 0 1.5em;
  372. width: 100%;
  373. }
  374. /*--------------------------------------------------------------*/
  375. /* !## Links */
  376. /*--------------------------------------------------------------*/
  377. a {
  378. color: royalblue;
  379. }
  380. a:visited {
  381. color: purple;
  382. }
  383. a:hover,
  384. a:focus,
  385. a:active {
  386. color: midnightblue;
  387. }
  388. a:focus {
  389. outline: thin dotted;
  390. }
  391. a:hover,
  392. a:active {
  393. outline: 0;
  394. }
  395. /*--------------------------------------------------------------*/
  396. /* !## Forms */
  397. /*--------------------------------------------------------------*/
  398. button,
  399. input[type="button"],
  400. input[type="reset"],
  401. input[type="submit"] {
  402. background: #FFF;
  403. border: 2px solid #000;
  404. border-radius: 0;
  405. color: #F35029;
  406. font-family: "Rubik", "Helvetica Neue", sans-serif;
  407. font-weight: 500;
  408. line-height: 1;
  409. padding: 15px 20px;
  410. -webkit-appearance: none;
  411. }
  412. button:hover,
  413. input[type="button"]:hover,
  414. input[type="reset"]:hover,
  415. input[type="submit"]:hover {
  416. background: #000;
  417. color: #FFF;
  418. }
  419. button:focus,
  420. input[type="button"]:focus,
  421. input[type="reset"]:focus,
  422. input[type="submit"]:focus,
  423. button:active,
  424. input[type="button"]:active,
  425. input[type="reset"]:active,
  426. input[type="submit"]:active {
  427. background: #000;
  428. color: #FFF;
  429. outline: 0;
  430. }
  431. input[type="text"],
  432. input[type="email"],
  433. input[type="url"],
  434. input[type="password"],
  435. input[type="search"],
  436. textarea {
  437. border: 2px solid #000;
  438. border-radius: 0;
  439. color: #F35029;
  440. padding: 12px 15px;
  441. -webkit-appearance: none;
  442. }
  443. input[type="text"]:focus,
  444. input[type="email"]:focus,
  445. input[type="url"]:focus,
  446. input[type="password"]:focus,
  447. input[type="search"]:focus,
  448. textarea:focus {
  449. color: #000;
  450. }
  451. input[type="text"],
  452. input[type="email"],
  453. input[type="url"],
  454. input[type="password"],
  455. input[type="search"] {
  456. padding: 11px 15px;
  457. }
  458. textarea {
  459. padding-left: 3px;
  460. width: 100%;
  461. }
  462. /*--------------------------------------------------------------*/
  463. /* !# Theme Globals */
  464. /*--------------------------------------------------------------*/
  465. html {
  466. height: 100%;
  467. }
  468. body {
  469. background: #FFF;
  470. color: #555;
  471. display: -webkit-flex;
  472. display: -ms-flexbox;
  473. display: flex;
  474. font-family: "Rubik", "Helvetica Neue", sans-serif;
  475. font-size: 17px;
  476. line-height: 1.5;
  477. min-height: 100%;
  478. word-wrap: break-word;
  479. -webkit-font-smoothing: antialiased;
  480. -webkit-flex-direction: column;
  481. -ms-flex-direction: column;
  482. flex-direction: column;
  483. }
  484. /* Fade in page after js loads */
  485. .js body {
  486. opacity: 0;
  487. }
  488. h1, h2, h3, h4, h5, h6 {
  489. font-family: "Libre Baskerville", Georgia, serif;
  490. font-weight: 700;
  491. margin-bottom: .5em;
  492. }
  493. h1 {
  494. font-size: 36px;
  495. }
  496. h2 {
  497. font-size: 28px;
  498. }
  499. h3 {
  500. font-size: 24px;
  501. }
  502. h4, h5, h6 {
  503. font-size: 18px;
  504. }
  505. a,
  506. a:visited {
  507. color: #000;
  508. text-decoration: none;
  509. word-wrap: break-word;
  510. -webkit-transition: all 0.2s ease;
  511. -moz-transition: all 0.2s ease;
  512. transition: all 0.2s ease;
  513. }
  514. a:hover,
  515. a:focus,
  516. a:active {
  517. color: #F35029;
  518. text-decoration: underline;
  519. }
  520. /*--------------------------------------------------------------*/
  521. /* !# Layout */
  522. /*--------------------------------------------------------------*/
  523. #page {
  524. -webkit-flex: 1 0 auto;
  525. -ms-flex: 1 0 auto;
  526. flex: 1 0 auto;
  527. }
  528. .content-area {
  529. width: 100%;
  530. }
  531. .site-main {
  532. padding: 0;
  533. position: relative;
  534. }
  535. .site-content .secondary {
  536. overflow: hidden;
  537. width: 28%;
  538. }
  539. .col-width {
  540. margin: 0 auto;
  541. max-width: 1140px;
  542. position: relative;
  543. width: 90%;
  544. }
  545. /* No Sidebar */
  546. .no-sidebar .content-area {
  547. margin: 0 auto;
  548. max-width: 790px;
  549. }
  550. .no-sidebar.masonry .content-area {
  551. max-width: 100%;
  552. }
  553. /* Full Width Template */
  554. .full-width .content-area {
  555. margin: 0;
  556. }
  557. .full-width .site-main {
  558. margin: 0;
  559. }
  560. .clear {
  561. clear: both
  562. }
  563. .clear-fix {
  564. clear: both
  565. }
  566. .clear-fix:before,
  567. .clear-fix:after {
  568. content: " "; /* 1 */
  569. display: table; /* 2 */
  570. }
  571. .clear-fix:after {
  572. clear: both;
  573. }
  574. /* For IE 6/7 only */
  575. .clear-fix {
  576. *zoom: 1;
  577. }
  578. /* General Responsive Layout */
  579. @media screen and (max-width: 881px) {
  580. #page .content-area {
  581. float: none;
  582. }
  583. #page .site-main {
  584. margin: 0;
  585. padding: 0;
  586. }
  587. #page .site-content .secondary {
  588. float: none;
  589. width: auto;
  590. }
  591. }
  592. @media screen and (max-width: 510px) {
  593. .single #page .content-area {
  594. border-top: 1px solid #f2f2f2;
  595. margin-top: 0;
  596. }
  597. .single #content .module {
  598. border-radius: 0;
  599. margin-bottom: 0;
  600. }
  601. .single.sidebar-right .site-content .secondary {
  602. border-top: 1px solid #f2f2f2;
  603. margin: 0;
  604. }
  605. }
  606. /*--------------------------------------------------------------*/
  607. /* !# Accessibility */
  608. /*--------------------------------------------------------------*/
  609. /* Text meant only for screen readers. */
  610. .screen-reader-text {
  611. clip: rect(1px, 1px, 1px, 1px);
  612. height: 1px;
  613. overflow: hidden;
  614. position: absolute !important;
  615. width: 1px;
  616. }
  617. .screen-reader-text:focus {
  618. background-color: #f1f1f1;
  619. border-radius: 3px;
  620. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  621. clip: auto !important;
  622. color: #21759b;
  623. display: block;
  624. font-size: 14px;
  625. font-size: 0.875rem;
  626. font-weight: bold;
  627. height: auto;
  628. left: 5px;
  629. line-height: normal;
  630. padding: 15px 23px 14px;
  631. text-decoration: none;
  632. top: 5px;
  633. width: auto;
  634. z-index: 100000; /* Above WP toolbar. */
  635. }
  636. /* Do not show the outline on the skip link target. */
  637. #content[tabindex="-1"]:focus {
  638. outline: 0;
  639. }
  640. /*--------------------------------------------------------------*/
  641. /* !# Alignments */
  642. /*--------------------------------------------------------------*/
  643. .alignleft {
  644. display: inline;
  645. float: left;
  646. margin-bottom: 1.5em;
  647. margin-right: 1.5em;
  648. }
  649. .alignright {
  650. display: inline;
  651. float: right;
  652. margin-left: 1.5em;
  653. margin-bottom: 1.5em;
  654. }
  655. .aligncenter {
  656. clear: both;
  657. display: block;
  658. margin-bottom: 1.5em;
  659. margin-left: auto;
  660. margin-right: auto;
  661. }
  662. /*--------------------------------------------------------------*/
  663. /* !# Clearings */
  664. /*--------------------------------------------------------------*/
  665. .clear:before,
  666. .clear:after,
  667. .entry-content:before,
  668. .entry-content:after,
  669. .comment-content:before,
  670. .comment-content:after,
  671. .site-header:before,
  672. .site-header:after,
  673. .site-content:before,
  674. .site-content:after,
  675. .site-footer:before,
  676. .site-footer:after {
  677. content: "";
  678. display: table;
  679. table-layout: fixed;
  680. }
  681. .clear:after,
  682. .entry-content:after,
  683. .comment-content:after,
  684. .site-header:after,
  685. .site-content:after,
  686. .site-footer:after {
  687. clear: both;
  688. }
  689. /*--------------------------------------------------------------*/
  690. /* !# Header */
  691. /*--------------------------------------------------------------*/
  692. .site-heading {
  693. border-top: 3px solid #000;
  694. border-bottom: 6px solid #000;
  695. margin: 0;
  696. padding: 30px 0;
  697. }
  698. .has-custom-header .site-heading {
  699. border-top: none;
  700. }
  701. .site-branding {
  702. text-align: center;
  703. }
  704. .site-title {
  705. font-family: "Rubik", "Helvetica Neue", sans-serif;
  706. font-size: 36px;
  707. font-weight: 400;
  708. line-height: 1;
  709. margin: 0;
  710. }
  711. .site-title a {
  712. color: #000;
  713. position: relative;
  714. text-decoration: none;
  715. }
  716. .site-title a:hover {
  717. color: #F35029;
  718. }
  719. .site-logo,
  720. .custom-logo {
  721. display: block;
  722. margin: 0 auto 15px;
  723. }
  724. .site-header-image {
  725. display: block;
  726. }
  727. .site-title-heading {
  728. margin-bottom: 0;
  729. }
  730. .site-description {
  731. color: #000;
  732. font-family: "Libre Baskerville", Georgia, serif;
  733. font-weight: 400;
  734. font-size: 16px;
  735. font-style: italic;
  736. line-height: 2em;
  737. margin: 30px 0 33px; /* Adding 3 extra pixels to bottom to keep baseline intact */
  738. position: relative;
  739. text-align: center;
  740. width: 100%;
  741. }
  742. /* Hides description from the customizer when empty */
  743. .site-description:empty {
  744. display: none;
  745. }
  746. /* Large Screen Styles */
  747. @media screen and (min-width: 881px) {
  748. .site-heading {
  749. align-items: center;
  750. border-top: none;
  751. display: block;
  752. display: flex;
  753. flex-direction: row;
  754. padding-top: 60px;
  755. }
  756. .has-custom-header .site-heading {
  757. padding-top: 30px;
  758. }
  759. .site-branding {
  760. flex-grow: 4;
  761. text-align: left;
  762. }
  763. .site-branding .site-title {
  764. display: inline-block;
  765. }
  766. .site-title {
  767. border-top: none;
  768. font-size: 48px;
  769. }
  770. .has-site-logo .site-title,
  771. .wp-custom-logo .site-title {
  772. vertical-align: middle;
  773. }
  774. .site-logo,
  775. .custom-logo {
  776. display: block;
  777. margin: 0;
  778. }
  779. .site-logo-link,
  780. .custom-logo-link {
  781. display: inline-block;
  782. margin-right: 20px;
  783. vertical-align: middle;
  784. }
  785. .site-title-heading {
  786. display: inline-block;
  787. margin-bottom: 0;
  788. vertical-align: middle;
  789. }
  790. }
  791. /*--------------------------------------------------------------*/
  792. /* !# Navigation */
  793. /*--------------------------------------------------------------*/
  794. /*--------------------------------------------------------------*/
  795. /* !## Social Navigation */
  796. /*--------------------------------------------------------------*/
  797. .social-navigation {
  798. position: relative;
  799. width: 100%;
  800. }
  801. .social-navigation > * {
  802. font-size: 25px;
  803. line-height: 1;
  804. padding: 20px 0 0;
  805. text-align: center;
  806. }
  807. .social-navigation ul {
  808. list-style: none;
  809. margin: 0;
  810. padding: 0;
  811. }
  812. .social-navigation li {
  813. display: inline-block;
  814. padding: 0 7px;
  815. }
  816. .social-navigation a {
  817. display: block;
  818. height: 25px;
  819. text-align: center;
  820. width: 25px;
  821. }
  822. .social-menu a span {
  823. clip: rect(1px, 1px, 1px, 1px);
  824. height: 1px;
  825. margin: 0;
  826. overflow: hidden;
  827. position: absolute !important;
  828. width: 1px;
  829. }
  830. .social-menu a:before {
  831. content: '\f0c1';
  832. display: inline-block;
  833. font-family: 'FontAwesome';
  834. font-style: normal;
  835. font-weight: normal;
  836. line-height: 1;
  837. -webkit-font-smoothing: antialiased;
  838. -moz-osx-font-smoothing: grayscale;
  839. }
  840. .social-menu a[href*="behance.com"]:before,
  841. .social-menu a[href*="behance.net"]:before {
  842. content: '\f1b4';
  843. }
  844. .social-menu a[href*="digg.com"]:before {
  845. content: '\f1a6';
  846. }
  847. .social-menu a[href*="dribbble.com"]:before {
  848. content: '\f17d';
  849. }
  850. .social-menu a[href*="facebook.com"]:before {
  851. content: '\f09a';
  852. }
  853. .social-menu a[href*="flickr.com"]:before {
  854. content: '\f16e';
  855. }
  856. .social-menu a[href*="foursquare.com"]:before {
  857. content: '\f180';
  858. }
  859. .social-menu a[href*="github.com"]:before {
  860. content: '\f09b';
  861. }
  862. .social-menu a[href*="linkedin.com"]:before {
  863. content: '\f0e1';
  864. }
  865. .social-menu a[href*="pinterest."]:before {
  866. content: '\f0d2';
  867. }
  868. .social-menu a[href*="plus.google.com"]:before {
  869. content: '\f0d5';
  870. }
  871. .social-menu a[href*="instagr.am"]:before,
  872. .social-menu a[href*="instagram.com"]:before {
  873. content: '\f16d';
  874. }
  875. .social-menu a[href*="reddit.com"]:before {
  876. content: '\f281';
  877. }
  878. .social-menu a[href*="skype.com"]:before {
  879. content: '\f17e';
  880. }
  881. .social-menu a[href*="soundcloud.com"]:before {
  882. content: '\f1be';
  883. }
  884. .social-menu a[href*="spotify.com"]:before {
  885. content: '\f1bc';
  886. }
  887. .social-menu a[href*="tumblr.com"]:before {
  888. content: '\f173';
  889. }
  890. .social-menu a[href*="twitch.tv"]:before {
  891. content: '\f1e8';
  892. }
  893. .social-menu a[href*="twitter.com"]:before {
  894. content: '\f099';
  895. }
  896. .social-menu a[href*="vimeo.com"]:before {
  897. content: '\f194';
  898. }
  899. .social-menu a[href*="wordpress.com"]:before,
  900. .social-menu a[href*="wordpress.org"]:before {
  901. content: '\f19a';
  902. }
  903. .social-menu a[href*="youtube.com"]:before {
  904. content: "\f167";
  905. }
  906. /* RSS */
  907. .social-menu a[href*='/feed']:before {
  908. content: "\f09e";
  909. }
  910. /* Email */
  911. .social-menu a[href*='mailto']:before {
  912. content: "\f0e0";
  913. }
  914. /* Icons aren't shown in small screen layouts */
  915. @media screen and (min-width: 881px) {
  916. .social-navigation {
  917. flex-grow: 1;
  918. width: auto;
  919. }
  920. .social-navigation > * {
  921. font-size: 20px;
  922. padding: 0;
  923. text-align: right;
  924. }
  925. }
  926. /*--------------------------------------------------------------*/
  927. /* !## Main Navigation */
  928. /*--------------------------------------------------------------*/
  929. .main-navigation {
  930. clear: both;
  931. display: table;
  932. float: none;
  933. font-size: 1rem;
  934. position: relative;
  935. width: 100%;
  936. }
  937. .main-navigation ul {
  938. list-style: none;
  939. margin: 0;
  940. padding: 0;
  941. -webkit-transition: all 0.2s ease;
  942. -moz-transition: all 0.2s ease;
  943. transition: all 0.2s ease;
  944. }
  945. .main-navigation .sub-menu,
  946. .main-navigation .children {
  947. padding-left: 1.5em;
  948. border-top: 1px solid #CCC;
  949. margin-bottom: -1px;
  950. }
  951. .main-navigation .sub-menu li:before,
  952. .main-navigation .children li:before {
  953. content: "\2014\00a0";
  954. display: inline-block;
  955. line-height: 1.5em;
  956. padding-left: 8px;
  957. padding-top: 12px;
  958. position: absolute;
  959. z-index: 0;
  960. -webkit-transition: all 0.2s ease;
  961. -moz-transition: all 0.2s ease;
  962. transition: all 0.2s ease;
  963. }
  964. .main-navigation .sub-menu li:hover:before,
  965. .main-navigation .children li:hover:before {
  966. color: #F35029;
  967. }
  968. .main-navigation div > ul:first-child {
  969. border-top: 3px solid #000;
  970. width: 100%;
  971. }
  972. .main-navigation div > ul:last-child {
  973. border-bottom: 3px solid #000;
  974. }
  975. .main-navigation ul > li a {
  976. display: block;
  977. color: #000;
  978. padding: 12px 20px;
  979. text-decoration: none;
  980. }
  981. .main-navigation ul > li li a {
  982. padding-left: 26px;
  983. }
  984. .main-navigation ul > li:hover > a,
  985. .main-navigation ul ul > li:hover > a {
  986. color: #F35029;
  987. }
  988. .dropdown-toggle {
  989. display: none;
  990. }
  991. /*--------------------------------------------------------------*/
  992. /* !## Toggle Navigation */
  993. /*--------------------------------------------------------------*/
  994. .menu-toggle {
  995. background: #FFF;
  996. box-shadow: none;
  997. color: #F35029;
  998. cursor: pointer;
  999. display: inline-block;
  1000. font-weight: 500;
  1001. line-height: 1;
  1002. margin: -15px auto 40px;
  1003. padding: 13px 18px 14px;
  1004. text-align: left;
  1005. }
  1006. .menu-toggle:after {
  1007. content: '\f107';
  1008. display: inline-block;
  1009. font-family: 'FontAwesome';
  1010. font-weight: normal;
  1011. margin: 0 0 0 5px;
  1012. speak: none;
  1013. vertical-align: baseline;
  1014. }
  1015. .menu-toggle[aria-expanded="true"]:after {
  1016. content: "\d7";
  1017. }
  1018. .menu-toggle:focus {
  1019. background: #FFF;
  1020. color: #F35029;
  1021. box-shadow: none;
  1022. }
  1023. /* Small menu. */
  1024. .menu-toggle {
  1025. display: block;
  1026. }
  1027. .main-navigation.toggled-on {
  1028. margin-bottom: 40px;
  1029. }
  1030. .main-navigation > div {
  1031. background: #FFF;
  1032. height: auto;
  1033. max-height: 0;
  1034. opacity: 0;
  1035. overflow: hidden;
  1036. position: relative;
  1037. width: 100%;
  1038. -webkit-transition: max-height 0.3s ease, opacity 0.3s ease;
  1039. -moz-transition: max-height all 0.3s ease, opacity 0.3s ease;
  1040. transition: max-height all 0.3s ease, opacity 0.3s ease;
  1041. }
  1042. .main-navigation.toggled-on > div {
  1043. max-height: 9999px;
  1044. opacity: 1;
  1045. width: 100%;
  1046. z-index: 999;
  1047. }
  1048. /* Large Screen Styles */
  1049. @media screen and (min-width: 881px) {
  1050. .menu-toggle {
  1051. display: none;
  1052. }
  1053. }
  1054. /*--------------------------------------------------------------*/
  1055. /* !## Mobile Navigation */
  1056. /*--------------------------------------------------------------*/
  1057. @media screen and (max-width: 880px) {
  1058. .main-navigation .col-width {
  1059. width: 100%;
  1060. }
  1061. /*
  1062. * Sub-menu dropdown buttons
  1063. */
  1064. .dropdown-toggle {
  1065. border: 1px solid #CCC;
  1066. display: inline-block;
  1067. height: 32px;
  1068. line-height: 5px;
  1069. margin: 0;
  1070. padding: 10px;
  1071. position: absolute;
  1072. right: 8px;
  1073. top: 7px;
  1074. speak: none;
  1075. z-index: 5;
  1076. width: 32px;
  1077. -moz-border-radius: 20px;
  1078. -webkit-border-radius: 20px;
  1079. -khtml-border-radius: 20px;
  1080. border-radius: 20px;
  1081. }
  1082. .dropdown-toggle:after {
  1083. color: #000000;
  1084. content: '\f107';
  1085. font-family: 'FontAwesome';
  1086. font-weight: normal;
  1087. line-height: 0;
  1088. text-align: center;
  1089. vertical-align: baseline;
  1090. }
  1091. .dropdown-toggle:hover,
  1092. .dropdown-toggle.toggled-on {
  1093. border-color: #F35029;
  1094. }
  1095. .dropdown-toggle:hover::after {
  1096. color: #F35029;
  1097. }
  1098. .dropdown-toggle.toggled-on:after {
  1099. content: '\d7';
  1100. color: #F35029;
  1101. line-height: 0;
  1102. vertical-align: top;
  1103. }
  1104. .dropdown-toggle:active,
  1105. .dropdown-toggle:hover,
  1106. .dropdown-toggle:focus {
  1107. background: transparent;
  1108. color: #F35029;
  1109. }
  1110. /*
  1111. * Sub-menu top borders
  1112. *
  1113. * Using a psuedo class for top borders in
  1114. * menu on mobile so that we don't need
  1115. * media queries in our color annotations.
  1116. */
  1117. .main-navigation .sub-menu,
  1118. .main-navigation .children {
  1119. border-top: none;
  1120. position: relative;
  1121. }
  1122. .main-navigation .sub-menu:before,
  1123. .main-navigation .children:before {
  1124. content: "";
  1125. border-top: 1px solid #CCC;
  1126. height: 1px;
  1127. left: 0;
  1128. position: absolute;
  1129. top: 0;
  1130. width: 100%;
  1131. }
  1132. /*
  1133. * Sub-menu bottom dropdowns
  1134. */
  1135. .main-navigation .sub-menu,
  1136. .main-navigation .children {
  1137. background: #FFF;
  1138. height: auto;
  1139. max-height: 0;
  1140. opacity: 0;
  1141. overflow: hidden;
  1142. position: relative;
  1143. width: 100%;
  1144. -webkit-transition: max-height 0.3s ease, opacity 0.3s ease;
  1145. -moz-transition: max-height all 0.3s ease, opacity 0.3s ease;
  1146. transition: max-height all 0.3s ease, opacity 0.3s ease;
  1147. }
  1148. .main-navigation .sub-menu.toggled-on,
  1149. .main-navigation .children.toggled-on {
  1150. max-height: 9999px;
  1151. opacity: 1;
  1152. width: 100%;
  1153. }
  1154. /*
  1155. * Sub-menu bottom borders
  1156. *
  1157. * Using a psuedo class for bottom borders
  1158. * in menu on mobile so that we don't need
  1159. * media queries in our color annotations.
  1160. */
  1161. .main-navigation li {
  1162. position: relative;
  1163. }
  1164. .main-navigation li a {
  1165. position: relative;
  1166. z-index: 1;
  1167. }
  1168. .main-navigation li:after {
  1169. content: "";
  1170. bottom: 0;
  1171. border-bottom: 1px solid #CCC;
  1172. height: 1px;
  1173. left: 0;
  1174. position: absolute;
  1175. width: 100%;
  1176. }
  1177. .main-navigation li:after {
  1178. content: "";
  1179. bottom: 0;
  1180. border-bottom: 1px solid #CCC;
  1181. height: 1px;
  1182. left: 0;
  1183. position: absolute;
  1184. width: 100%;
  1185. }
  1186. .main-navigation ul:last-of-type > li:last-of-type:after {
  1187. border-bottom: none;
  1188. }
  1189. }
  1190. /* Large Screen Styles */
  1191. @media screen and (min-width: 881px) {
  1192. .header-menu-wrap {
  1193. float: left;
  1194. }
  1195. .site-description {
  1196. float: left;
  1197. text-align: left;
  1198. width: 48.5%;
  1199. }
  1200. .main-navigation {
  1201. clear: right;
  1202. float: right;
  1203. font-size: 16px;
  1204. height: inherit;
  1205. margin: 30px 0;
  1206. overflow: visible;
  1207. position: relative;
  1208. width: 48.5%;
  1209. }
  1210. .main-navigation > div {
  1211. position: relative;
  1212. opacity: 1;
  1213. overflow: visible;
  1214. }
  1215. .main-navigation div > ul {
  1216. float: left;
  1217. list-style-type: none;
  1218. margin: 0 0 15px;
  1219. padding: 0;
  1220. text-align: left;
  1221. width: 33%;
  1222. }
  1223. .main-navigation div > ul:first-child {
  1224. border-top: none;
  1225. margin-top: inherit;
  1226. padding-top: inherit;
  1227. width: 33%;
  1228. }
  1229. /* Javascript turned off */
  1230. .no-js .main-navigation div > ul {
  1231. width: 100%;
  1232. }
  1233. .no-js .main-navigation div > ul li {
  1234. float: left;
  1235. width: 33%;
  1236. }
  1237. .no-js .main-navigation div > ul li li {
  1238. width: 100%;
  1239. }
  1240. .main-navigation div > ul:last-child {
  1241. padding-bottom: inherit;
  1242. border-bottom: none;
  1243. }
  1244. .main-navigation .sub-menu,
  1245. .main-navigation .children {
  1246. background: #FFF;
  1247. border: 2px solid #000;
  1248. border-width: 2px;
  1249. display: none;
  1250. left: 0;
  1251. margin: 0 -2px -2px;
  1252. padding-left: 0;
  1253. position: absolute;
  1254. width: calc(100% + 4px);
  1255. z-index: 99999;
  1256. }
  1257. .main-navigation ul > li {
  1258. border: 2px solid transparent;
  1259. line-height: 1.333em;
  1260. margin: -2px;
  1261. position: relative;
  1262. }
  1263. .main-navigation ul > li a {
  1264. display: block;
  1265. padding: 5px 8px;
  1266. text-align: left;
  1267. }
  1268. /* Sub navigation */
  1269. .main-navigation ul ul > li:hover,
  1270. .main-navigation .page_item_has_children:hover,
  1271. .main-navigation .menu-item-has-children:hover {
  1272. border-color: #000;
  1273. }
  1274. .main-navigation .sub-menu li:before,
  1275. .main-navigation .children li:before {
  1276. padding-top: 4px;
  1277. }
  1278. .main-navigation .sub-menu a,
  1279. .main-navigation .children a {
  1280. padding-left: 26px;
  1281. position: relative;
  1282. z-index: 1;
  1283. }
  1284. .main-navigation div > ul ul {
  1285. border: 2px solid #000;
  1286. border-width: 0 2px;
  1287. }
  1288. .main-navigation .sub-menu .sub-menu,
  1289. .main-navigation .children .children {
  1290. border-width: 2px;
  1291. right: calc(100% + 2px);
  1292. left: inherit;
  1293. margin: -2px -2px -2px 0;
  1294. top: 0;
  1295. }
  1296. .main-navigation .sub-menu .sub-menu li,
  1297. .main-navigation .children .children li {
  1298. display: block;
  1299. padding: 0;
  1300. width: calc(100% + 4px);
  1301. }
  1302. .main-navigation .page_item_has_children > a:after,
  1303. .main-navigation .menu-item-has-children > a:after {
  1304. content: '\f107';
  1305. display: inline-block;
  1306. font-family: 'FontAwesome';
  1307. font-weight: normal;
  1308. margin: 0 0 0 5px;
  1309. speak: none;
  1310. vertical-align: baseline;
  1311. }
  1312. .main-navigation .sub-menu li.page_item_has_children:before,
  1313. .main-navigation .children li.page_item_has_children:before,
  1314. .main-navigation .sub-menu li.menu-item-has-children:before,
  1315. .main-navigation .children li.menu-item-has-children:before {
  1316. content: '\f104';
  1317. font-family: 'FontAwesome';
  1318. font-weight: normal;
  1319. margin: -2px 5px 0 0;
  1320. }
  1321. .main-navigation .page_item_has_children .page_item_has_children > a:after,
  1322. .main-navigation .menu-item-has-children .menu-item-has-children > a:after {
  1323. content: '';
  1324. display: none;
  1325. }
  1326. .main-navigation ul li:hover > ul {
  1327. display: block;
  1328. }
  1329. .main-navigation ul ul li:last-child a {
  1330. border-bottom: none;
  1331. }
  1332. }
  1333. /*--------------------------------------------------------------*/
  1334. /* !# Content */
  1335. /*--------------------------------------------------------------*/
  1336. /*--------------------------------------------------------------*/
  1337. /* !## Posts and Pages */
  1338. /*--------------------------------------------------------------*/
  1339. .sticky {
  1340. display: block;
  1341. }
  1342. .hentry {
  1343. margin: 0;
  1344. }
  1345. .updated:not(.published) {
  1346. display: none;
  1347. }
  1348. .single .byline,
  1349. .group-blog .byline {
  1350. display: inline;
  1351. }
  1352. .post-hero-image {
  1353. border: 1px solid #DDD;
  1354. margin-bottom: 10px;
  1355. }
  1356. .post-hero-image .entry-image {
  1357. margin: -1px;
  1358. }
  1359. .entry-image {
  1360. line-height: 0;
  1361. margin: 0;
  1362. text-align: center;
  1363. }
  1364. .entry-image .entry-image-caption {
  1365. background: #FFF;
  1366. border-bottom: 3px solid #000;
  1367. color: #999;
  1368. font-size: 14px;
  1369. padding: 15px;
  1370. }
  1371. .entry-image .entry-image-caption span {
  1372. margin-right: 10px;
  1373. }
  1374. .entry-image-section {
  1375. margin-bottom: 20px;
  1376. }
  1377. .entry-header {
  1378. margin-bottom: 20px;
  1379. }
  1380. .entry-title {
  1381. font-size: 36px;
  1382. line-height: 1.125em;
  1383. }
  1384. .entry-title a {
  1385. color: #000;
  1386. }
  1387. .entry-title a:hover,
  1388. .entry-title a:active {
  1389. color: #F35029;
  1390. }
  1391. .entry-meta {
  1392. color: #999;
  1393. font-size: 14px;
  1394. line-height: 2em;
  1395. }
  1396. .entry-meta a {
  1397. color: #F35029;
  1398. display: inline-block;
  1399. }
  1400. .entry-meta a:hover,
  1401. .entry-meta a:active {
  1402. color: #555;
  1403. }
  1404. .entry-tags a:before {
  1405. content: "#";
  1406. }
  1407. .entry-meta > span:after {
  1408. color: #CCC;
  1409. content: "/";
  1410. padding: 0 10px;
  1411. }
  1412. .entry-meta > span:last-child:after {
  1413. content: "";
  1414. display: none;
  1415. }
  1416. .page-content,
  1417. .entry-content,
  1418. .entry-summary,
  1419. .comment-content {
  1420. margin: 0;
  1421. }
  1422. .page-content p,
  1423. .entry-content p,
  1424. .entry-summary p,
  1425. .comment-content p,
  1426. .entry-content > *:last-child,
  1427. .comment-content > *:last-child {
  1428. margin-bottom: 20px;
  1429. }
  1430. .entry-content h5,
  1431. .comment-content h5 {
  1432. font-family: "Rubik", "Helvetica Neue", sans-serif;
  1433. font-weight: 600;
  1434. letter-spacing: 0;
  1435. text-transform: none;
  1436. }
  1437. .entry-content h6,
  1438. .comment-content h6 {
  1439. font-family: "Rubik", "Helvetica Neue", sans-serif;
  1440. font-weight: 400;
  1441. letter-spacing: 0;
  1442. text-transform: none;
  1443. }
  1444. .entry-content a,
  1445. .comment-content a {
  1446. color: #F35029;
  1447. text-decoration: underline;
  1448. }
  1449. .entry-content a:hover,
  1450. .entry-content a:active,
  1451. .comment-content a:hover,
  1452. .comment-content a:active {
  1453. color: #000;
  1454. text-decoration: underline;
  1455. }
  1456. .entry-content address,
  1457. .comment-content address {
  1458. font-family: "Libre Baskerville", Georgia, serif;
  1459. font-style: normal;
  1460. }
  1461. .entry-content blockquote,
  1462. .comment-content blockquote {
  1463. border-left: 6px solid #F35029;
  1464. font-family: "Libre Baskerville", Georgia, serif;
  1465. font-style: italic;
  1466. font-size: 18px;
  1467. line-height: 1.825em;
  1468. margin: 0 0 0 -40px;
  1469. padding-left: 40px;
  1470. }
  1471. .entry-content blockquote blockquote,
  1472. .comment-content blockquote blockquote {
  1473. margin-left: 0;
  1474. }
  1475. .entry-content q,
  1476. .comment-content q {
  1477. border-left: 6px solid #F35029;
  1478. font-family: "Libre Baskerville", Georgia, serif;
  1479. font-style: italic;
  1480. font-size: 18px;
  1481. line-height: 1.825em;
  1482. margin: 0;
  1483. padding-left: 20px;
  1484. }
  1485. .entry-content cite,
  1486. .comment-content cite {
  1487. font-family: "Libre Baskerville", Georgia, serif;
  1488. font-style: italic;
  1489. }
  1490. .entry-content table th,
  1491. .entry-content table tr,
  1492. .entry-content table td,
  1493. .comment-content th,
  1494. .comment-content tr,
  1495. .comment-content td {
  1496. padding: 10px;
  1497. text-align: left;
  1498. }
  1499. .entry-content thead th,
  1500. .comment-content thead th {
  1501. font-family: "Libre Baskerville", Georgia, serif;
  1502. font-weight: 400;
  1503. font-size: 14px;
  1504. }
  1505. .entry-content tbody th,
  1506. .entry-content tbody tr,
  1507. .entry-content tbody td,
  1508. .comment-content th,
  1509. .comment-content tr,
  1510. .comment-content td {
  1511. border: 1px solid #999;
  1512. word-break: break-word;
  1513. }
  1514. .page-links {
  1515. clear: both;
  1516. margin: 0 0 1.5em;
  1517. word-spacing: .5em;
  1518. }
  1519. .page-links a {
  1520. border: 2px solid #000;
  1521. display: inline-block;
  1522. margin: 0 0 10px;
  1523. padding: 2px 7px;
  1524. text-decoration: none;
  1525. }
  1526. .page-links a:hover {
  1527. background: #000;
  1528. color: #FFF;
  1529. text-decoration: none;
  1530. }
  1531. .page-links strong {
  1532. font-size: 15px;
  1533. font-weight: 600;
  1534. letter-spacing: .125em;
  1535. text-transform: uppercase;
  1536. }
  1537. /*--------------------------------------------------------------*/
  1538. /* !## Featured Project */
  1539. /*--------------------------------------------------------------*/
  1540. .site-feature {
  1541. margin-bottom: 30px;
  1542. position: relative;
  1543. }
  1544. .site-feature img {
  1545. display: block;
  1546. }
  1547. .site-feature .post-hero-image {
  1548. margin-bottom: 0;
  1549. }
  1550. .site-feature .entry-header {
  1551. background: #555;
  1552. margin-bottom: 0;
  1553. padding: 30px;
  1554. position: relative;
  1555. width: 100%;
  1556. }
  1557. .site-feature .entry-header .entry-title {
  1558. font-size: 24px;
  1559. }
  1560. .site-feature .entry-header a,
  1561. .site-feature .entry-header .entry-summary,
  1562. .site-feature .entry-header .entry-meta,
  1563. .site-feature .entry-header .entry-meta a,
  1564. .site-feature .entry-header .entry-title a,
  1565. .site-feature .entry-header .entry-categories:after {
  1566. color: #FFF;
  1567. }
  1568. .site-feature .entry-header .entry-meta a:hover,
  1569. .site-feature .entry-header .entry-meta a:active {
  1570. color: #FFF;
  1571. text-decoration: underline;
  1572. }
  1573. /* Large Screen Styles */
  1574. @media screen and (min-width: 881px) {
  1575. .site-feature {
  1576. margin-bottom: 60px;
  1577. }
  1578. .site-feature img {
  1579. -webkit-transition: all 0.2s ease;
  1580. -moz-transition: all 0.2s ease;
  1581. transition: all 0.2s ease;
  1582. }
  1583. .site-feature:hover img {
  1584. opacity: 0.5;
  1585. }
  1586. .site-feature .entry-image-link {
  1587. background: #000;
  1588. }
  1589. .site-feature .entry-header {
  1590. padding: 2em;
  1591. text-shadow: 1px 0px 3px rgba(0,0,0,.4);
  1592. }
  1593. .site-feature .entry-header .entry-title {
  1594. font-size: 36px;
  1595. }
  1596. .site-feature .has-thumbnail .entry-header {
  1597. background: transparent;
  1598. bottom: 0;
  1599. left: 0;
  1600. padding: 0 0 2em 2em;
  1601. position: absolute;
  1602. width: 50%;
  1603. }
  1604. }
  1605. /*--------------------------------------------------------------*/
  1606. /* !## Author Meta */
  1607. /*--------------------------------------------------------------*/
  1608. .author-meta,
  1609. .entry-author {
  1610. border-top: 3px solid #000;
  1611. clear: both;
  1612. padding: 20px 0;
  1613. }
  1614. .entry-author:before,
  1615. .entry-author:after {
  1616. content: "";
  1617. display: table;
  1618. table-layout: fixed;
  1619. }
  1620. .entry-author:after {
  1621. clear: both;
  1622. }
  1623. .author-box {
  1624. float: right;
  1625. position: relative;
  1626. width: 100%;
  1627. }
  1628. .author-avatar {
  1629. float: right;
  1630. margin: 0 0 20px 20px;
  1631. }
  1632. .author-description {
  1633. padding-right: 33%;
  1634. }
  1635. .author-box h3 {
  1636. clear: none;
  1637. font-family: "Rubik", "Helvetica Neue", sans-serif;
  1638. font-weight: 600;
  1639. margin: 0;
  1640. }
  1641. .author-bio,
  1642. .author-heading {
  1643. float: left;
  1644. width: 66%;
  1645. }
  1646. /* Large Screen Styles */
  1647. @media screen and (min-width: 881px) {
  1648. .author-meta,
  1649. .entry-author {
  1650. padding: 60px 0;
  1651. }
  1652. .author-information {
  1653. display: table;
  1654. min-height: 111px;
  1655. }
  1656. .author-box {
  1657. float: right;
  1658. position: relative;
  1659. width: calc(66.666%);
  1660. }
  1661. .author-avatar {
  1662. margin: 0;
  1663. }
  1664. .author-avatar .avatar {
  1665. position: absolute;
  1666. right: calc(100% + 40px);
  1667. width: 111px;
  1668. }
  1669. .author-bio,
  1670. .author-heading {
  1671. float: none;
  1672. margin-left: auto;
  1673. margin-right: auto;
  1674. }
  1675. .entry-author .author-avatar {
  1676. display: none; /* Temporary fix */
  1677. }
  1678. }
  1679. /*--------------------------------------------------------------*/
  1680. /* !## Single Post */
  1681. /*--------------------------------------------------------------*/
  1682. .single #page .site-main {
  1683. border-top: 3px solid #000;
  1684. padding: 20px 0 0;
  1685. }
  1686. .single-post #page .site-main {
  1687. margin-top: -3px;
  1688. }
  1689. .single .post-hero-image {
  1690. margin-bottom: 20px;
  1691. }
  1692. .single .hentry .entry-header {
  1693. margin: 0 0 20px;
  1694. }
  1695. .single .hentry .entry-title {
  1696. font-size: 28px;
  1697. line-height: 1.25;
  1698. margin-bottom: 10px;
  1699. }
  1700. .single .entry-footer .entry-meta {
  1701. margin-bottom: 20px;
  1702. }
  1703. /* Large Screens */
  1704. @media screen and (min-width: 881px) {
  1705. .single #page .site-main {
  1706. padding: 50px 0 0;
  1707. }
  1708. .single .post-hero-image {
  1709. margin-bottom: 50px;
  1710. }
  1711. .single .hentry .entry-header {
  1712. float: right;
  1713. margin: 0 0 50px;
  1714. width: 100%;
  1715. position: relative;
  1716. }
  1717. .single .entry-header .entry-meta {
  1718. float: right;
  1719. width: calc(66.666%);
  1720. }
  1721. .single .hentry .entry-title {
  1722. font-size: 36px;
  1723. margin-bottom: 10px;
  1724. margin-left: calc(33.333%);
  1725. }
  1726. .single .hentry .entry-content {
  1727. float: right;
  1728. margin-bottom: 20px;
  1729. width: calc(66.666%);
  1730. }
  1731. .single .hentry .entry-footer {
  1732. float: right;
  1733. margin-bottom: 50px;
  1734. width: calc(66.666%);
  1735. }
  1736. .single .entry-footer .entry-meta {
  1737. margin-bottom: 30px;
  1738. }
  1739. }
  1740. /*--------------------------------------------------------------*/
  1741. /* !## Single Jetpack Portfolio */
  1742. /*--------------------------------------------------------------*/
  1743. .single-jetpack-portfolio #page .site-main {
  1744. border-top: 0;
  1745. padding-top: 0;
  1746. }
  1747. .single-jetpack-portfolio .hentry {
  1748. padding-top: 30px;
  1749. }
  1750. .single-jetpack-portfolio .has-post-thumbnail {
  1751. padding-top: 0;
  1752. }
  1753. /* Large Screens */
  1754. @media screen and (min-width: 881px) {
  1755. .single-jetpack-portfolio .hentry {
  1756. padding-top: 50px;
  1757. }
  1758. .single-jetpack-portfolio .hentry .entry-header,
  1759. .single-jetpack-portfolio .hentry .entry-content,
  1760. .single-jetpack-portfolio .hentry .entry-footer {
  1761. float: none;
  1762. margin: 0 15% 50px;
  1763. width: auto;
  1764. }
  1765. .single-jetpack-portfolio .hentry .entry-title {
  1766. margin: auto;
  1767. }
  1768. .single-jetpack-portfolio .entry-header .entry-meta {
  1769. float: inherit;
  1770. width: auto;
  1771. }
  1772. .single-jetpack-portfolio .has-post-thumbnail {
  1773. padding-top: 0;
  1774. }
  1775. }
  1776. /*--------------------------------------------------------------*/
  1777. /* !## Page */
  1778. /*--------------------------------------------------------------*/
  1779. .page .page {
  1780. border-top: 3px solid #000;
  1781. padding: 50px 0;
  1782. }
  1783. .page .page .entry-footer .entry-meta {
  1784. margin-bottom: 20px;
  1785. }
  1786. .page .page .entry-title {
  1787. font-size: 28px;
  1788. line-height: 1.25;
  1789. margin-bottom: 10px;
  1790. }
  1791. /* Large Screens */
  1792. @media screen and (min-width: 881px) {
  1793. .page .page {
  1794. padding: 50px 15%;
  1795. }
  1796. .page .page .entry-title {
  1797. font-size: 36px;
  1798. }
  1799. .page .page .entry-footer .entry-meta {
  1800. margin-bottom: 30px;
  1801. }
  1802. }
  1803. /*--------------------------------------------------------------*/
  1804. /* !## Archive & Search */
  1805. /*--------------------------------------------------------------*/
  1806. .archive .page-header,
  1807. .search .page-header {
  1808. border-top: 3px solid #000;
  1809. padding: 60px 0;
  1810. text-align: center;
  1811. }
  1812. .archive .page-header .page-title,
  1813. .search .page-header .page-title {
  1814. border: 2px solid #000;
  1815. display: inline-block;
  1816. font-family: "Rubik", "Helvetica Neue", sans-serif;
  1817. font-size: 18px;
  1818. font-weight: 400;
  1819. margin-bottom: 0;
  1820. padding: 4px 8px;
  1821. }
  1822. .archive .taxonomy-description,
  1823. .search .taxonomy-description {
  1824. color: #999;
  1825. font-size: 14px;
  1826. padding: 20px 30px 0;
  1827. }
  1828. .archive .page-header p,
  1829. .search .page-header p {
  1830. margin-bottom: 0;
  1831. }
  1832. /* Large Screens */
  1833. @media screen and (min-width: 881px) {
  1834. .archive .page-header,
  1835. .search .page-header {
  1836. text-align: left;
  1837. }
  1838. .archive .page-header .page-title,
  1839. .search .page-header .page-title {
  1840. display: inline-block;
  1841. margin-bottom: 0;
  1842. vertical-align: middle;
  1843. }
  1844. .archive .taxonomy-description,
  1845. .search .taxonomy-description {
  1846. display: inline-block;
  1847. vertical-align: middle;
  1848. width: 66.666%;
  1849. padding-top: 0;
  1850. }
  1851. }
  1852. /*--------------------------------------------------------------*/
  1853. /* !## Masonry */
  1854. /*--------------------------------------------------------------*/
  1855. .card {
  1856. background: transparent;
  1857. display: inline-block;
  1858. margin: 0 -2px;
  1859. padding-bottom: 30px;
  1860. width: 100%;
  1861. word-wrap: break-word;
  1862. vertical-align: top;
  1863. -ms-transition: background-color 0.2s ease;
  1864. -webkit-transition: background-color 0.2s ease;
  1865. transition: background-color 0.2s ease;
  1866. }
  1867. .js .infinite-scroll .card {
  1868. display: inherit;
  1869. float: left;
  1870. margin: 0;
  1871. opacity: 0;
  1872. vertical-align: inherit;
  1873. }
  1874. .card .entry-image-section {
  1875. border-top: 3px solid #000;
  1876. padding-top: 30px;
  1877. }
  1878. .card .entry-image {
  1879. padding: 0;
  1880. }
  1881. .card .entry-header {
  1882. border-top: 3px solid #000;
  1883. padding-top: 20px;
  1884. margin-bottom: 20px;
  1885. -ms-transition: border-color 0.2s ease;
  1886. -webkit-transition: border-color 0.2s ease;
  1887. transition: border-color 0.2s ease;
  1888. }
  1889. .card.type-jetpack-portfolio .entry-header {
  1890. margin-bottom: 10px;
  1891. }
  1892. .card .entry-title {
  1893. font-size: 24px;
  1894. line-height: 1.2125em;
  1895. margin-bottom: 0;
  1896. }
  1897. .card.type-jetpack-portfolio .entry-title {
  1898. font-size: 18px;
  1899. text-align: center;
  1900. }
  1901. .card .entry-title a {
  1902. border-bottom: 2px solid transparent;
  1903. display: inline;
  1904. text-decoration: none;
  1905. }
  1906. .card .entry-title a:hover {
  1907. border-bottom-color: #F35029;
  1908. }
  1909. .card.has-post-thumbnail .entry-header {
  1910. border-top: none;
  1911. padding-top: 0;
  1912. }
  1913. .card .entry-content {
  1914. font-size: 18px;
  1915. line-height: 1.45em;
  1916. -ms-transition: color 0.2s ease;
  1917. -webkit-transition: color 0.2s ease;
  1918. transition: color 0.2s ease;
  1919. }
  1920. .card .entry-meta,
  1921. .card .entry-meta > span:after,
  1922. .card:hover .sd-rating h3.sd-title {
  1923. -ms-transition: color 0.2s ease;
  1924. -webkit-transition: color 0.2s ease;
  1925. transition: color 0.2s ease;
  1926. }
  1927. .card.type-jetpack-portfolio .entry-meta {
  1928. text-align: center;
  1929. }
  1930. /* Breakpoint for small screens */
  1931. @media screen and (max-width: 639px) {
  1932. .card[style] {
  1933. padding-bottom: 20px;
  1934. /* Override Masonry width */
  1935. width: 100% !important;
  1936. }
  1937. .card[style]:hover {
  1938. background: inherit !important;
  1939. color: inherit !important;
  1940. }
  1941. .card:hover .entry-meta > span:after,
  1942. .card:hover a,
  1943. .card:hover a:active,
  1944. .card:hover a:hover {
  1945. color: inherit !important;
  1946. }
  1947. .card .entry-image img {
  1948. opacity: 1;
  1949. -webkit-transition: opacity 0.2s ease;
  1950. -moz-transition: opacity 0.2s ease;
  1951. transition: opacity 0.2s ease;
  1952. }
  1953. .card .entry-image:hover img {
  1954. opacity: 0.5;
  1955. }
  1956. }
  1957. /* Break point for 2 column grid */
  1958. @media screen and (min-width: 640px) {
  1959. .card,
  1960. .grid-sizer {
  1961. width: calc(50%);
  1962. }
  1963. .card {
  1964. padding: 30px;
  1965. }
  1966. .card:hover {
  1967. color: #FFF;
  1968. background-color: #F35029;
  1969. }
  1970. .card:hover a,
  1971. .card:hover a:active,
  1972. .card:hover a:hover,
  1973. .card:hover .entry-meta,
  1974. .card:hover .entry-meta > span:after,
  1975. .card:hover .sd-rating h3.sd-title {
  1976. color: #FFF;
  1977. }
  1978. .card:hover .entry-header {
  1979. border-color: #FFF;
  1980. }
  1981. .card:hover .entry-title a {
  1982. border-bottom-color: transparent;
  1983. }
  1984. .card:hover .entry-title a:hover,
  1985. .card .entry-title a:hover {
  1986. border-bottom-color: #FFF;
  1987. text-decoration: none;
  1988. }
  1989. .card .entry-image-section {
  1990. border-top: none;
  1991. padding-top: 0;
  1992. }
  1993. .card:last-of-type {
  1994. border-bottom: none;
  1995. }
  1996. }
  1997. /* Break point for 3 column grid */
  1998. @media screen and (min-width: 960px) {
  1999. .card,
  2000. .grid-sizer {
  2001. width: calc(33.333%);
  2002. }
  2003. }
  2004. /*--------------------------------------------------------------*/
  2005. /* !## Infinite Scroll */
  2006. /*--------------------------------------------------------------*/
  2007. #infinite-wrap {
  2008. margin: 0;
  2009. padding-bottom: 120px;
  2010. width: 100%;
  2011. }
  2012. .infinite-scroll .pagination {
  2013. display: none;
  2014. }
  2015. #infinite-handle {
  2016. bottom: 0;
  2017. clear: both;
  2018. display: table;
  2019. margin-bottom: 50px;
  2020. position: absolute;
  2021. text-align: center;
  2022. width: 100%;
  2023. }
  2024. #infinite-handle span {
  2025. background: transparent !important;
  2026. border-radius: inherit !important;
  2027. color: inherit !important;
  2028. font-size: inherit !important;
  2029. padding: inherit !important;
  2030. }
  2031. #infinite-handle span button {
  2032. background: #FFF;
  2033. border: 2px solid #000;
  2034. color: #F35029;
  2035. font-family: "Rubik", "Helvetica Neue", sans-serif;
  2036. font-weight: 600;
  2037. line-height: 1;
  2038. padding: 12px 0;
  2039. width: 33%;
  2040. }
  2041. #infinite-handle span button:hover,
  2042. #infinite-handle span button:active,
  2043. #infinite-handle span button:focus {
  2044. background: #000;
  2045. border: 2px solid #000;
  2046. color: #FFF;
  2047. font-family: "Rubik", "Helvetica Neue", sans-serif;
  2048. font-weight: 600;
  2049. line-height: 1;
  2050. padding: 12px 0;
  2051. }
  2052. .infinite-loader {
  2053. bottom: 0;
  2054. left: 50%;
  2055. margin: 0 0 50px -17px;
  2056. position: absolute;
  2057. width: 35px;
  2058. }
  2059. /* Globally hidden elements when Infinite Scroll is supported and in use. */
  2060. .infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
  2061. .infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
  2062. display: none;
  2063. }
  2064. /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
  2065. .infinity-end.neverending .site-footer {
  2066. display: block;
  2067. }
  2068. .infinite-scroll .pagination {
  2069. display: none;
  2070. }
  2071. /* Small Styles */
  2072. @media screen and (max-width: 360px) {
  2073. #infinite-wrap[style],
  2074. #infinite-handle span button {
  2075. width: 100% !important;
  2076. }
  2077. }
  2078. /* Break point for 2 and 3 column grid */
  2079. @media screen and (min-width: 640px) {
  2080. #infinite-wrap,
  2081. #infinite-wrap[style] {
  2082. margin: -30px -30px 0;
  2083. padding-bottom: 120px;
  2084. width: calc(100% + 60px) !important;
  2085. }
  2086. }
  2087. /*--------------------------------------------------------------
  2088. * !## Jetpack Contact Forms */
  2089. /*--------------------------------------------------------------*/
  2090. .site-content .contact-form input[type="radio"],
  2091. .site-content .contact-form input[type="checkbox"] {
  2092. margin-bottom: 6px;
  2093. margin-right: .3em;
  2094. vertical-align: middle;
  2095. }
  2096. .site-content .contact-form label.checkbox,
  2097. .site-content .contact-form label.checkbox-multiple,
  2098. .site-content .contact-form label.radio {
  2099. font-weight: normal;
  2100. font-style: normal;
  2101. margin-bottom: .375em;
  2102. float: none;
  2103. }
  2104. .site-content .contact-form label {
  2105. margin-bottom: .375em;
  2106. }
  2107. .site-content .contact-form > div {
  2108. margin-bottom: .75em;
  2109. }
  2110. .site-content .contact-form textarea,
  2111. .site-content .contact-form input[type='text'],
  2112. .site-content .contact-form input[type='email'],
  2113. .site-content .contact-form input[type='url'],
  2114. .site-content .contact-form select {
  2115. margin-bottom: .375em;
  2116. max-width: 100%;
  2117. }
  2118. /*--------------------------------------------------------------*/
  2119. /* !## 404 Error */
  2120. /*--------------------------------------------------------------*/
  2121. .error404 .not-found,
  2122. .blog .not-found,
  2123. .page-template-portfolio-page .not-found,
  2124. .search-no-results .page-content {
  2125. border-top: 3px solid #000;
  2126. padding: 20px 0;
  2127. }
  2128. .error404 .page-title {
  2129. font-size: 30px;
  2130. line-height: 1.33em;
  2131. }
  2132. .error404 .page-header p {
  2133. margin-bottom: 0;
  2134. }
  2135. /* Large Screens */
  2136. @media screen and (min-width: 881px) {
  2137. .error404 .not-found,
  2138. .blog .not-found,
  2139. .page-template-portfolio-page .not-found,
  2140. .search-no-results .page-content {
  2141. padding: 50px 12.5%;
  2142. }
  2143. }
  2144. /*--------------------------------------------------------------*/
  2145. /* !## Post Format: Aside */
  2146. /*--------------------------------------------------------------*/
  2147. .blog .format-aside .entry-title,
  2148. .archive .format-aside .entry-title,
  2149. .search .format-aside .entry-title {
  2150. display: none;
  2151. }
  2152. /*--------------------------------------------------------------*/
  2153. /* !# Media */
  2154. /*--------------------------------------------------------------*/
  2155. .page-content .wp-smiley,
  2156. .entry-content .wp-smiley,
  2157. .comment-content .wp-smiley {
  2158. border: none;
  2159. margin-bottom: 0;
  2160. margin-top: 0;
  2161. padding: 0;
  2162. }
  2163. /* Make sure embeds and iframes fit their containers. */
  2164. embed,
  2165. iframe,
  2166. object {
  2167. max-width: 100%;
  2168. }
  2169. /*--------------------------------------------------------------*/
  2170. /* !## Captions */
  2171. /*--------------------------------------------------------------*/
  2172. .wp-caption {
  2173. margin: 0 0 1.5em;
  2174. max-width: 100%;
  2175. position: relative;
  2176. }
  2177. .wp-caption.alignleft {
  2178. margin-right: 1.5em;
  2179. }
  2180. .wp-caption.alignright {
  2181. margin-left: 1.5em;
  2182. }
  2183. .wp-caption img[class*="wp-image-"] {
  2184. display: block;
  2185. margin-left: auto;
  2186. margin-right: auto;
  2187. }
  2188. .wp-caption .wp-caption-text {
  2189. color: #999;
  2190. font-size: 14px;
  2191. line-height: 1.525em;
  2192. margin: 5px 0;
  2193. position: relative;
  2194. text-align: center;
  2195. }
  2196. .wp-caption.aligncenter {
  2197. margin: 0 auto 1.5em;
  2198. }
  2199. /* Large Screen Styles */
  2200. @media screen and (min-width: 881px) {
  2201. /* Only posts with non-floating/fullwidth images can have hanging captions */
  2202. .post .wp-caption.aligncenter .wp-caption-text,
  2203. .post .wp-caption.alignnone .wp-caption-text {
  2204. margin: 0;
  2205. position: absolute;
  2206. text-align: right;
  2207. top: 0;
  2208. right: calc(100% + 40px);
  2209. width: 50%;
  2210. }
  2211. .post .wp-caption.aligncenter .wp-caption-text {
  2212. margin: 5px 0;
  2213. position: relative;
  2214. text-align: center;
  2215. top: 0;
  2216. right: inherit;
  2217. width: 100%;
  2218. }
  2219. }
  2220. /*--------------------------------------------------------------*/
  2221. /* !## Galleries */
  2222. /*--------------------------------------------------------------*/
  2223. .gallery {
  2224. margin: 0 -2% 1.5em;
  2225. }
  2226. .gallery-item {
  2227. display: inline-block;
  2228. margin: 0 0 1.5em;
  2229. padding: 0 1%;
  2230. text-align: center;
  2231. vertical-align: top;
  2232. width: 100%;
  2233. }
  2234. .gallery-item a {
  2235. display: block;
  2236. line-height: 0;
  2237. }
  2238. .gallery-columns-2 .gallery-item {
  2239. max-width: 50%;
  2240. }
  2241. .gallery-columns-3 .gallery-item {
  2242. max-width: 33.33%;
  2243. }
  2244. .gallery-columns-4 .gallery-item {
  2245. max-width: 25%;
  2246. }
  2247. .gallery-columns-5 .gallery-item {
  2248. max-width: 20%;
  2249. }
  2250. .gallery-columns-6 .gallery-item {
  2251. max-width: 16.66%;
  2252. }
  2253. .gallery-columns-7 .gallery-item {
  2254. max-width: 14.28%;
  2255. }
  2256. .gallery-columns-8 .gallery-item {
  2257. max-width: 12.5%;
  2258. }
  2259. .gallery-columns-9 .gallery-item {
  2260. max-width: 11.11%;
  2261. }
  2262. .gallery-caption {
  2263. color: #999;
  2264. display: block;
  2265. font-size: 14px;
  2266. line-height: 1.525em;
  2267. margin: 5px 0;
  2268. padding: 0 15px;
  2269. }
  2270. /*--------------------------------------------------------------*/
  2271. /* !# Pagination */
  2272. /*--------------------------------------------------------------*/
  2273. .comment-navigation .nav-previous,
  2274. .post-navigation .nav-previous {
  2275. display: inline-block;
  2276. }
  2277. .comment-navigation .nav-previous a .meta-nav:before,
  2278. .post-navigation .nav-previous a .meta-nav:before {
  2279. content: "\00AB\00a0";
  2280. }
  2281. .comment-navigation .nav-next,
  2282. .post-navigation .nav-next {
  2283. display: inline-block;
  2284. }
  2285. .comment-navigation .nav-next a .meta-nav:after,
  2286. .post-navigation .nav-next a .meta-nav:after {
  2287. content: "\00a0\00BB";
  2288. }
  2289. .post-navigation .nav-previous:after,
  2290. .post-navigation .nav-next:after,
  2291. .comment-navigation .nav-previous:after,
  2292. .comment-navigation .nav-next:after {
  2293. color: #CCC;
  2294. content: "/";
  2295. padding: 0 10px;
  2296. }
  2297. .post-navigation .nav-previous:last-child:after,
  2298. .post-navigation .nav-next:last-child:after,
  2299. .comment-navigation .nav-previous:last-child:after,
  2300. .comment-navigation .nav-next:last-child:after {
  2301. content: "";
  2302. display: none;
  2303. }
  2304. .post-navigation .meta-nav-title {
  2305. display: none;
  2306. }
  2307. /* Archive navigation */
  2308. .posts-navigation {
  2309. bottom: 0;
  2310. clear: both;
  2311. display: table;
  2312. margin: 50px 0;
  2313. padding: 0;
  2314. position: absolute;
  2315. width: 100%;
  2316. }
  2317. .posts-navigation .nav-previous {
  2318. float: left;
  2319. }
  2320. .posts-navigation .nav-previous a:before {
  2321. content: "\00AB\00a0";
  2322. display: inline;
  2323. font-family: 'FontAwesome';
  2324. font-size: 20px;
  2325. font-weight: normal;
  2326. line-height: 0;
  2327. margin: 0 0 0 5px;
  2328. speak: none;
  2329. vertical-align: baseline;
  2330. }
  2331. .posts-navigation .nav-next a:after {
  2332. content: "\00a0\00BB";
  2333. display: inline;
  2334. font-family: 'FontAwesome';
  2335. font-size: 20px;
  2336. font-weight: normal;
  2337. line-height: 0;
  2338. margin: 0 0 0 5px;
  2339. speak: none;
  2340. vertical-align: baseline;
  2341. }
  2342. .posts-navigation .nav-next {
  2343. float: right;
  2344. }
  2345. .posts-navigation a {
  2346. border: 2px solid #000;
  2347. color: #F35029;
  2348. display: inline-block;
  2349. font-size: 16px;
  2350. font-weight: 500;
  2351. line-height: 1;
  2352. margin: 0;
  2353. padding: 12px 40px;
  2354. }
  2355. .posts-navigation a:hover,
  2356. .posts-navigation a:active {
  2357. background: #000;
  2358. color: #FFF;
  2359. text-decoration: none;
  2360. }
  2361. /* Single navigation */
  2362. .single .site-main .post-navigation {
  2363. border-top: 3px solid #000;
  2364. display: block;
  2365. padding-top: 20px;
  2366. }
  2367. .single .entry-header .post-navigation {
  2368. display: none;
  2369. }
  2370. .site-main .comment-navigation,
  2371. .site-main .post-navigation {
  2372. clear: both;
  2373. font-family: "Libre Baskerville", Georgia, serif;
  2374. font-size: 16px;
  2375. font-style: italic;
  2376. line-height: 2em;
  2377. margin: 0 0 20px;
  2378. overflow: hidden;
  2379. text-align: center;
  2380. width: 100%;
  2381. }
  2382. .site-main .comment-navigation {
  2383. margin-bottom: 0;
  2384. }
  2385. .site-main .comment-navigation .nav-links {
  2386. border-top: 3px solid #000;
  2387. padding: 30px 0;
  2388. }
  2389. /* Responsive Navigation */
  2390. @media screen and (min-width: 881px) {
  2391. .site-main .post-navigation {
  2392. text-align: right;
  2393. }
  2394. .site-main > .post-navigation .nav-previous:after,
  2395. .site-main > .post-navigation .nav-next:after {
  2396. content: "";
  2397. display: none;
  2398. }
  2399. .single .site-main > .post-navigation {
  2400. border-top: 1px solid #CCC;
  2401. margin: 0;
  2402. padding: 30px 0;
  2403. text-align: center;
  2404. width: 100%;
  2405. }
  2406. .single .site-main > .post-navigation a {
  2407. display: block;
  2408. }
  2409. .site-main > .post-navigation .nav-previous {
  2410. display: inline-block;
  2411. float: left;
  2412. padding-right: 20px;
  2413. text-align: right;
  2414. width: 50%;
  2415. vertical-align: middle;
  2416. }
  2417. .site-main > .post-navigation .nav-next {
  2418. display: inline-block;
  2419. float: right;
  2420. padding-left: 20px;
  2421. text-align: left;
  2422. width: 50%;
  2423. vertical-align: middle;
  2424. }
  2425. .site-main .post-navigation .meta-nav-title {
  2426. display: block;
  2427. font-style: normal;
  2428. font-family: "Rubik", "Helvetica Neue", sans-serif;
  2429. font-weight: 400;
  2430. line-height: 1.5em;
  2431. margin-bottom: 5px;
  2432. }
  2433. .single .entry-header .post-navigation {
  2434. bottom: 0;
  2435. border-top: none;
  2436. display: block;
  2437. margin-bottom: 0;
  2438. padding-top: 0;
  2439. position: absolute;
  2440. width: calc(33.333% - 40px);
  2441. }
  2442. .site-main .comment-navigation {
  2443. text-align: center;
  2444. }
  2445. .site-main .comment-navigation {
  2446. float: right;
  2447. }
  2448. .site-main .comment-navigation .nav-links {
  2449. border-top: 1px solid #CCC;
  2450. }
  2451. }
  2452. /*--------------------------------------------------------------*/
  2453. /* !# Comments */
  2454. /*--------------------------------------------------------------*/
  2455. .comments-area {
  2456. border-top: 6px solid #000;
  2457. padding: 20px 0;
  2458. }
  2459. .comment-navigation {
  2460. width: 100%;
  2461. }
  2462. .comments-title {
  2463. margin-bottom: 20px;
  2464. }
  2465. .comment-list {
  2466. float: right;
  2467. list-style: none;
  2468. margin-bottom: 0;
  2469. margin-left: 0;
  2470. padding-left: 0;
  2471. width: 100%;
  2472. }
  2473. .comment,
  2474. .pingback {
  2475. clear: both;
  2476. position: relative;
  2477. }
  2478. .comment .comment-body,
  2479. .pingback .comment-body {
  2480. border-top: 3px solid #000;
  2481. padding: 20px 0;
  2482. }
  2483. .bypostauthor .fn:before {
  2484. color: #F35029;
  2485. content: '\f040';
  2486. display: inline-block;
  2487. font-family: 'FontAwesome';
  2488. font-size: 15px;
  2489. margin-right: 10px;
  2490. }
  2491. .pingback .comment-body {
  2492. color: #999;
  2493. }
  2494. .comment .comment-meta {
  2495. display: table;
  2496. margin-bottom: 20px;
  2497. width: 100%;
  2498. }
  2499. .comment .avatar {
  2500. position: absolute;
  2501. left: 0;
  2502. width: 50px;
  2503. }
  2504. .comment .comment-author {
  2505. display: inline-block;
  2506. clear: both;
  2507. font-size: 20px;
  2508. line-height: 1em;
  2509. width: 100%;
  2510. }
  2511. .comment .comment-author a {
  2512. color: #F35029;
  2513. }
  2514. .comment .comment-author .fn {
  2515. margin-left: 70px;
  2516. }
  2517. .comment .comment-metadata {
  2518. display: inline-block;
  2519. float: left;
  2520. font-size: 14px;
  2521. margin-left: 70px;
  2522. text-align: left;
  2523. }
  2524. .comment-metadata a {
  2525. color: #999;
  2526. }
  2527. .comment .says {
  2528. display: none;
  2529. }
  2530. .comment .reply {
  2531. font-size: 14px;
  2532. text-align: right;
  2533. }
  2534. .comment .comment-reply-link {
  2535. color: #F35029;
  2536. }
  2537. .comment .comment-reply-link:before {
  2538. content: '\f106';
  2539. display: inline-block;
  2540. font-family: 'FontAwesome';
  2541. font-weight: normal;
  2542. margin: 0 5px 0 0;
  2543. speak: none;
  2544. vertical-align: baseline;
  2545. }
  2546. .comment-content a {
  2547. word-wrap: break-word;
  2548. }
  2549. .comment .children {
  2550. list-style: none;
  2551. margin-left: 1em;
  2552. }
  2553. .comment .children .comment-body {
  2554. border-top: 1px solid #CCC;
  2555. padding: 20px 0;
  2556. }
  2557. .comment .children .comment:last-child {
  2558. padding-bottom: 0;
  2559. }
  2560. /* Responsive Comments */
  2561. @media screen and (min-width: 881px) {
  2562. .comments-area {
  2563. padding: 50px 11.111% 50px 33.333%;
  2564. }
  2565. .comments-title {
  2566. margin-bottom: 50px;
  2567. }
  2568. .comment-list {
  2569. border-bottom: none;
  2570. }
  2571. .comment-list > .comment,
  2572. .comment-list > .pingback {
  2573. padding-top: 0;
  2574. }
  2575. .comment-list > .comment:first-child,
  2576. .comment-list > .pingback:first-child {
  2577. padding-top: 0;
  2578. }
  2579. .bypostauthor .fn:before {
  2580. font-size: 20px;
  2581. }
  2582. .comment .comment-body,
  2583. .pingback .comment-body {
  2584. border-top: 1px solid #CCC;
  2585. padding: 30px 0;
  2586. }
  2587. .comment .comment-meta {
  2588. display: table;
  2589. width: 100%;
  2590. }
  2591. .comment .comment-author {
  2592. float: left;
  2593. margin-left: inherit;
  2594. width: auto;
  2595. }
  2596. .comment .comment-author .fn {
  2597. margin-left: 0;
  2598. }
  2599. .comment .comment-metadata {
  2600. float: right;
  2601. margin-left: 0;
  2602. text-align: right;
  2603. width: auto;
  2604. }
  2605. .comment .avatar {
  2606. margin-right: 0;
  2607. left: inherit;
  2608. right: calc(100% + 40px);
  2609. width: 111px;
  2610. }
  2611. .comment .comment-content {
  2612. margin-left: 0;
  2613. }
  2614. .no-comments {
  2615. color: #999;
  2616. clear: both;
  2617. font-family: "Libre Baskerville", Georgia, serif;
  2618. font-style: italic;
  2619. margin-bottom: 10px;
  2620. text-align: center;
  2621. }
  2622. .comment .children {
  2623. margin-left: 2em;
  2624. }
  2625. .comment .children .comment-body {
  2626. padding: 30px 0;
  2627. }
  2628. }
  2629. /*--------------------------------------------------------------*/
  2630. /* !## Comment Respond */
  2631. /*--------------------------------------------------------------*/
  2632. .single div#respond,
  2633. .comment-respond {
  2634. border-top: 3px solid #000;
  2635. clear: both;
  2636. padding-top: 30px;
  2637. }
  2638. .single div#respond:first-child,
  2639. .comment-respond:first-child {
  2640. border-top: none;
  2641. padding-top: 0;
  2642. }
  2643. .comment-respond p {
  2644. margin-bottom: .75em;
  2645. }
  2646. .comment-respond p label {
  2647. display: block;
  2648. font-weight: 600;
  2649. padding: 12px 0;
  2650. text-align: left;
  2651. vertical-align: middle;
  2652. width: 100%;
  2653. }
  2654. .comment-respond p .subscribe-label {
  2655. font-weight: 400;
  2656. }
  2657. #respond p.comment-subscription-form label,
  2658. #respond p.post-subscription-form label {
  2659. font-weight: 400;
  2660. padding-left: 10px;
  2661. right: inherit;
  2662. text-align: left;
  2663. width: 75%;
  2664. }
  2665. .comment-respond p input,
  2666. .comment-respond p textarea {
  2667. border: 2px solid #000;
  2668. padding: 12px 15px;
  2669. width: 100%;
  2670. }
  2671. .comment-respond p.form-submit {
  2672. text-align: right;
  2673. width: 100%;
  2674. }
  2675. .comment-respond p.form-submit input {
  2676. width: 200px;
  2677. }
  2678. /* Inline comment form */
  2679. .single .comment div#respond,
  2680. .comment .comment-respond {
  2681. border-top: none;
  2682. margin-bottom: 30px;
  2683. margin-top: -47px !important;
  2684. padding-top: 1em;
  2685. position: relative;
  2686. width: 100%;
  2687. }
  2688. .comment .comment-reply-title {
  2689. border-top: none;
  2690. padding-top: 0;
  2691. }
  2692. .comment .comment-reply-title small {
  2693. position: absolute;
  2694. top: 0;
  2695. right: 0;
  2696. }
  2697. .comment .comment-reply-title a {
  2698. color: red;
  2699. background: #FFF;
  2700. font-family: "Rubik", "Helvetica Neue", sans-serif;
  2701. font-size: 14px;
  2702. font-weight: 400;
  2703. padding: 5px 0;
  2704. }
  2705. .comment .comment-reply-title a:before {
  2706. content: '\00D7';
  2707. display: inline-block;
  2708. font-family: 'FontAwesome';
  2709. font-weight: normal;
  2710. margin: 0 5px 0 0;
  2711. speak: none;
  2712. vertical-align: baseline;
  2713. }
  2714. .comment .comment-respond p input,
  2715. .comment .comment-respond p textarea {
  2716. width: 100%;
  2717. }
  2718. /* Responsive Comments */
  2719. @media screen and (min-width: 881px) {
  2720. .single div#respond,
  2721. .comment-respond {
  2722. border-top: 1px solid #CCC;
  2723. padding-top: 60px;
  2724. }
  2725. .single div#respond:first-child,
  2726. .comment-respond:first-child {
  2727. border-top: none;
  2728. padding-top: 0;
  2729. }
  2730. .comment-form {
  2731. position: relative;
  2732. }
  2733. .comment-respond p {
  2734. display: table;
  2735. margin-bottom: 1.5em;
  2736. overflow: visible;
  2737. width: 100%;
  2738. }
  2739. .comment-respond p label {
  2740. display: table-cell;
  2741. position: absolute;
  2742. right: calc(100% + 40px);
  2743. text-align: right;
  2744. width: 160px;
  2745. }
  2746. .comment-respond p input,
  2747. .comment-respond p textarea {
  2748. display: table-cell;
  2749. vertical-align: middle;
  2750. }
  2751. /* Inline comment form */
  2752. .single .comment div#respond,
  2753. .comment .comment-respond {
  2754. margin-top: -58px !important;
  2755. border-top: 1px solid transparent;
  2756. }
  2757. .comment .comment-respond p.form-submit {
  2758. padding-left: 50%;
  2759. width: 100%;
  2760. }
  2761. }
  2762. /*--------------------------------------------------------------*/
  2763. /* !# Widgets */
  2764. /*--------------------------------------------------------------*/
  2765. .widget {
  2766. margin: 0 0 30px;
  2767. width: 100%;
  2768. }
  2769. .widget-title {
  2770. margin-bottom: 20px;
  2771. font-family: "Rubik", "Helvetica Neue", sans-serif;
  2772. font-size: 16px;
  2773. font-weight: 600;
  2774. line-height: 1.25em;
  2775. }
  2776. /* Make sure select elements fit in widgets. */
  2777. .widget select {
  2778. max-width: 100%;
  2779. width: 100%;
  2780. }
  2781. .widget ul {
  2782. margin: 0;
  2783. padding: 0;
  2784. list-style: none;
  2785. }
  2786. .widget li > a {
  2787. display: block;
  2788. }
  2789. .widget li > .children {
  2790. margin-left: 1.5em;
  2791. list-style: disc;
  2792. }
  2793. /* Search */
  2794. .widget_search .search-field {
  2795. margin-bottom: 1.5em;
  2796. width: 90%;
  2797. }
  2798. .widget_search .search-submit{
  2799. padding: 12px 40px;
  2800. }
  2801. /* Calendar */
  2802. .widget_calendar {
  2803. text-align: left;
  2804. }
  2805. .widget_calendar caption {
  2806. font-size: 16px;
  2807. font-weight: 600;
  2808. line-height: 1.25em;
  2809. margin-bottom: 20px;
  2810. text-align: left;
  2811. }
  2812. .widget_calendar table a {
  2813. color: #F35029;
  2814. }
  2815. .widget_calendar table a:hover,
  2816. .widget_calendar table a:active {
  2817. color: #000;
  2818. }
  2819. .widget_calendar table th,
  2820. .widget_calendar table tr,
  2821. .widget_calendar table td {
  2822. padding: 10px;
  2823. text-align: center;
  2824. }
  2825. .widget_calendar thead th {
  2826. font-family: "Libre Baskerville", Georgia, serif;
  2827. font-weight: 600;
  2828. font-size: 14px;
  2829. }
  2830. .widget_calendar tbody {
  2831. color: #999;
  2832. }
  2833. .widget_calendar tbody th,
  2834. .widget_calendar tbody tr,
  2835. .widget_calendar tbody td {
  2836. border: 1px solid #999;
  2837. }
  2838. .widget_calendar tfoot a {
  2839. font-weight: 400;
  2840. }
  2841. .widget_calendar #prev {
  2842. text-align: left;
  2843. }
  2844. .widget_calendar #next {
  2845. text-align: right;
  2846. }
  2847. /* Tags */
  2848. .widget_tag_cloud a[style] {
  2849. border: 2px solid #000;
  2850. color: #F35029;
  2851. display: inline-block;
  2852. font-size: 16px !important;
  2853. line-height: 1.2125em !important;
  2854. margin: 0 0 4px !important;
  2855. padding: 8px 13px !important;
  2856. }
  2857. .widget_tag_cloud a[style]:hover,
  2858. .widget_tag_cloud a[style]:active {
  2859. background: #000;
  2860. color: #FFF;
  2861. text-decoration: none;
  2862. }
  2863. /* Categories & Archives */
  2864. .widget_links li > a,
  2865. .widget_categories li > a,
  2866. .widget_archive li > a {
  2867. display: inline-block;
  2868. }
  2869. .widget_links li,
  2870. .widget_categories li,
  2871. .widget_archive li {
  2872. color: #AAA;
  2873. }
  2874. /* Recent Posts */
  2875. .widget_recent_entries li {
  2876. margin-bottom: 10px;
  2877. }
  2878. .widget_recent_entries li .post-date {
  2879. color: #AAA;
  2880. font-size: 14px;
  2881. }
  2882. /* Recent Comments */
  2883. .widget_recent_comments li > a {
  2884. display: inline-block;
  2885. }
  2886. /* RSS */
  2887. .widget_rss li {
  2888. margin-bottom: 20px;
  2889. }
  2890. .widget_rss li .rsswidget {
  2891. font-family: "Libre Baskerville", Georgia, serif;
  2892. font-size: 24px;
  2893. font-weight: 700;
  2894. }
  2895. .widget_rss li .rss-date {
  2896. display: block;
  2897. margin-bottom: .5em;
  2898. }
  2899. .widget_rss li cite {
  2900. display: block;
  2901. text-align: right;
  2902. }
  2903. .widget_rss li cite:before {
  2904. content: "\2014\00a0";
  2905. }
  2906. /* Goodreads */
  2907. .widget_goodreads div[class^="gr_custom_title"] {
  2908. font-family: "Libre Baskerville", Georgia, serif;
  2909. }
  2910. .widget_goodreads div[class^="gr_custom_each_container"] {
  2911. display: table;
  2912. margin-bottom: 20px;
  2913. width: 100%;
  2914. }
  2915. .widget_goodreads div[class^="gr_custom_each_container"] > div {
  2916. float: left;
  2917. width: 80%;
  2918. }
  2919. .widget_goodreads div[class^="gr_custom_each_container"] > div[class^="gr_custom_book_container"] {
  2920. float: left;
  2921. width: 20%;
  2922. }
  2923. /* Large Screen Styles */
  2924. @media screen and (min-width: 881px) {
  2925. .widget {
  2926. display: inline-block;
  2927. margin: 0 0 60px 30px;
  2928. width: calc(49.66% - 30px);
  2929. vertical-align: top;
  2930. }
  2931. .widget:nth-child(2n) {
  2932. margin-right: 0;
  2933. }
  2934. }
  2935. /*--------------------------------------------------------------*/
  2936. /* !## Secondary */
  2937. /*--------------------------------------------------------------*/
  2938. #secondary {
  2939. border-top: 6px solid #000;
  2940. padding-top: 36px;
  2941. width: 100%;
  2942. }
  2943. /* Large Screen Styles */
  2944. @media screen and (min-width: 881px) {
  2945. #secondary {
  2946. float: right;
  2947. width: calc(66.666% + 30px);
  2948. }
  2949. }
  2950. /*--------------------------------------------------------------*/
  2951. /* !# Footer */
  2952. /*--------------------------------------------------------------*/
  2953. .site-footer {
  2954. border-top: 6px solid #000;
  2955. clear: left;
  2956. }
  2957. .site-footer .site-info {
  2958. font-family: "Libre Baskerville", Georgia, serif;
  2959. font-size: 16px;
  2960. line-height: 1.66em;
  2961. font-style: italic;
  2962. padding: 30px 0;
  2963. width: 100%;
  2964. }
  2965. /* Large Screen Styles */
  2966. @media screen and (min-width: 881px) {
  2967. .site-footer .site-info {
  2968. padding: 80px 0;
  2969. }
  2970. }
  2971. /*--------------------------------------------------------------*/
  2972. /* !# Extras */
  2973. /*--------------------------------------------------------------*/
  2974. /* WP Stats */
  2975. img#wpstats {
  2976. display: none !important
  2977. }