style.css 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199
  1. /*!
  2. Theme Name: daw
  3. Theme URI: https://davidawindham.com/
  4. Author: windhamdavid
  5. Description: Something Else
  6. Version: 2.0
  7. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  8. Thanks:
  9. normalize.css v3.0.1 * MIT License
  10. Bootstrap v3.2.0 * MIT License
  11. Font Awesome 4.2.0 * MIT License
  12. Font Mfizz 2.1 * MIT Lincense
  13. Font Computer Modern * SIL Open Font License (OFL) - https://en.wikipedia.org/wiki/Donald_Knuth
  14. Animate.css * MIT Lincense
  15. _s | * GPL License
  16. */
  17. html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
  18. html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{font-family:inherit;font-style:inherit;background:transparent;border:0;margin:0;padding:0;outline:0;vertical-align: baseline;}
  19. html{overflow-y: scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust: 100%;}
  20. body{line-height:1;}
  21. *,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
  22. article,aside,details,figcaption,figure,footer,header,main,nav,section{display:block;}
  23. ol,ul{list-style: none;}
  24. blockquote,q{quotes: "" "";}
  25. blockquote:before,blockquote:after,q:before,q:after{content:'';}
  26. del {text-decoration:line-through;}
  27. table{border-collapse:collapse;border-spacing:0;}
  28. a:focus {outline:thin dotted;}
  29. a img {border: 0;}
  30. .clear {clear: both;}
  31. /*============================================
  32. Body
  33. ==============================================*/
  34. body {
  35. background: rgba(242,242,242,.7);
  36. }
  37. body.page {
  38. background: rgba(72, 76, 87, 1);
  39. }
  40. body.page .site-title a {
  41. color:#fff;
  42. }
  43. body.desk .site-title a {
  44. color:#fff;
  45. }
  46. body.desk h1#desk {
  47. color:#fff;
  48. font-size:28px;
  49. }
  50. body.single {
  51. background: rgba(72,76,87,1);
  52. }
  53. body.single .site-title a {
  54. color:#fff;
  55. }
  56. body.archive {
  57. background: rgba(72,76,87,1);
  58. }
  59. body.archive .site-title a {
  60. color:#fff;
  61. }
  62. body.search {
  63. background: rgba(72,76,87,1);
  64. }
  65. body.search .site-title a {
  66. color:#fff;
  67. }
  68. body.sitemap {
  69. background-color: #616674;
  70. }
  71. body.sitemap .site-title a {
  72. color:#fff;
  73. }
  74. body.contact {
  75. background-color: #F6F6F6;
  76. }
  77. body.contact .site-title a {
  78. color:#000 !important; /* beat .light{color:#fcfcfc!important} — contact has a light bg */
  79. }
  80. /*============================================
  81. Typography
  82. ==============================================*/
  83. @font-face {
  84. font-family: 'Computer Modern';
  85. src: local("☺"),
  86. url('fonts/cmunrm.woff') format('woff');
  87. font-weight: normal;
  88. font-style: normal;
  89. }
  90. @font-face {
  91. font-family: 'Computer Modern';
  92. src: local("☺"),
  93. url('fonts/cmunbx.woff') format('woff');
  94. font-weight: bold;
  95. font-style: normal;
  96. }
  97. @font-face {
  98. font-family: 'Computer Modern';
  99. src: local("☺"),
  100. url('fonts/cmunsl.woff') format('woff');
  101. font-weight: normal;
  102. font-style: italic;
  103. }
  104. @font-face {
  105. font-family: 'CM Sans';
  106. src: local("☺"),
  107. url('fonts/cmunsx.woff') format('woff');
  108. font-weight: normal;
  109. font-style: normal;
  110. }
  111. @font-face {
  112. font-family: 'CM Concrete';
  113. src: local("☺"),
  114. url('fonts/cmunobx.woff') format('woff');
  115. font-weight: normal;
  116. font-style: normal;
  117. }
  118. @font-face {
  119. font-family: 'CM Type';
  120. src: local("☺"),
  121. url('fonts/cmunobx.woff') format('woff');
  122. font-weight: normal;
  123. font-style: normal;
  124. }
  125. .cm {
  126. font-family: "Computer Modern";
  127. }
  128. .cm-sans {
  129. font-family: "CM Sans";
  130. }
  131. .cm-concrete {
  132. font-family: "CM Concrete";
  133. }
  134. .cm-type {
  135. font-family: "CM Type";
  136. }
  137. .courier {
  138. font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  139. }
  140. .georgia {
  141. font-family: Georgia, Times, "Times New Roman", serif;
  142. }
  143. .helvetica {
  144. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  145. }
  146. * {
  147. -webkit-font-smoothing: antialiased !important;
  148. text-rendering: optimizeLegibility !important;
  149. line-height: 1.42857143;
  150. }
  151. input,button,select,textarea {
  152. font-family: inherit;
  153. font-size: inherit;
  154. line-height: inherit;
  155. }
  156. .firstcharacter {
  157. float: left;
  158. color: #000;
  159. font-size: 58px;
  160. line-height: 34px;
  161. padding-top: 4px;
  162. padding-right: 6px;
  163. padding-left: 0px;
  164. font-family: Georgia;
  165. }
  166. .tight {
  167. margin: 3px 0;
  168. }
  169. .light {
  170. color:#fcfcfc !important;
  171. }
  172. .darken {
  173. color:#333
  174. }
  175. .dim {
  176. color: #737373;
  177. }
  178. .dull {
  179. color: #535353;
  180. }
  181. .right {
  182. text-align: right;
  183. }
  184. a {
  185. text-decoration: none;
  186. }
  187. em {
  188. font-style: italic;
  189. }
  190. i {
  191. font-style: italic;
  192. }
  193. b {
  194. font-weight: bold;
  195. }
  196. .big {
  197. font-size: 29px;
  198. font-weight: bold;
  199. letter-spacing: -1px;
  200. }
  201. .super {
  202. margin: 40px 0 0;
  203. font-size: 43px;
  204. font-weight: bold;
  205. letter-spacing: -2px;
  206. }
  207. .super-duper {
  208. font-size: 60px;
  209. font-weight: bold;
  210. letter-spacing: -2px;
  211. }
  212. h5.contact {
  213. margin: 0 0 5px !important;
  214. }
  215. h4.spread {
  216. line-height: 24px;
  217. }
  218. .email a {
  219. color: #777;
  220. }
  221. /*============================================
  222. Grid
  223. ==============================================*/
  224. .container {
  225. padding-right: 15px;
  226. padding-left: 15px;
  227. margin-right: auto;
  228. margin-left: auto;
  229. word-wrap: break-word;
  230. }
  231. /* Desk main content: match the block pages' align:wide width (1280px) */
  232. body.desk .container.leader {
  233. width: auto;
  234. max-width: 1280px;
  235. }
  236. @media (max-width: 667px) {
  237. body {
  238. }
  239. .single {
  240. padding: 10px 0px;
  241. background: none !important;
  242. box-shadow: none !important;
  243. }
  244. .archive {
  245. padding: 10px 0px;
  246. }
  247. .super-duper {
  248. font-size: 63px;
  249. }
  250. #caro {
  251. min-height: 400px;
  252. }
  253. #caro #svg-imac {
  254. height: 220px !important;
  255. }
  256. #caro #svg-device {
  257. display: none;
  258. }
  259. #caro #sv {
  260. height: 100px !important;
  261. }
  262. #caro #svg-mac {
  263. height: 150px !important;
  264. }
  265. #brain {
  266. display:none;
  267. }
  268. .entry-content blockquote {
  269. margin: 0 15px 15px !important;
  270. font-size:.5em !important;
  271. padding:10px;
  272. border-radius:10px;
  273. }
  274. }
  275. @media (max-width: 768px) and (min-width: 668px) {
  276. article.single {
  277. padding: 70px 20px 70px;
  278. }
  279. }
  280. @media (min-width: 768px) {
  281. .container {
  282. width: 760px;
  283. }
  284. .site-title {
  285. font-size: 25px;
  286. }
  287. article.single {
  288. padding: 70px 40px 70px;
  289. }
  290. }
  291. @media (min-width: 992px) {
  292. .container {
  293. width: 970px;
  294. }
  295. article.single {
  296. padding: 70px 80px 140px;
  297. }
  298. }
  299. @media (min-width: 1200px) {
  300. .container {
  301. width: 1170px;
  302. }
  303. article.single {
  304. padding: 70px 100px 140px;
  305. }
  306. }
  307. @media (min-width: 1310px) {
  308. .container {
  309. width: 1280px;
  310. max-width: 1280px;
  311. }
  312. }
  313. @media (min-width: 1400px) {
  314. .container {
  315. width: 1380px;
  316. max-width: 1380px;
  317. }
  318. }
  319. @media print {
  320. * {
  321. color: #000 !important;
  322. text-shadow: none !important;
  323. background: transparent !important;
  324. -webkit-box-shadow: none !important;
  325. box-shadow: none !important;
  326. }
  327. }
  328. /*============================================
  329. Loader / Transit
  330. ==============================================*/
  331. #loader {
  332. position: fixed;
  333. width: 100%;
  334. height: 100%;
  335. top: 0;
  336. left: 0;
  337. font-size: 150px;
  338. text-align: center;
  339. vertical-align: middle;
  340. color: #222;
  341. z-index: 200000;
  342. background-color: #222;
  343. }
  344. .loading-animation {
  345. width: 250px;
  346. height: 250px;
  347. position: absolute;
  348. top: 0;
  349. bottom: 0;
  350. right: 0;
  351. left: 0;
  352. margin: auto;
  353. }
  354. .loading-animation svg {
  355. position:absolute;
  356. top:0;
  357. left:0;
  358. -webkit-transform-origin:center center;
  359. -ms-transform-origin:center center;
  360. -o-transform-origin:center center;
  361. transform-origin:center center;
  362. -webkit-transition:all 0.3s;
  363. -o-transition:all 0.3s;
  364. transition:all 0.3s;
  365. -webkit-transform:rotateY(0deg);
  366. -ms-transform:rotateY(0deg);
  367. -o-transform:rotateY(0deg);
  368. transform:rotateY(0deg);
  369. }
  370. .loading-animation path {
  371. fill:none;
  372. stroke:#fff;
  373. stroke-width:2;
  374. -webkit-transition:all .3s;
  375. -o-transition:all .3s;
  376. transition:all .3s;
  377. }
  378. .loading-animation .l1 path {
  379. fill:rgba(242,242,242,.1);
  380. stroke-dasharray:450;
  381. stroke-dashoffset:900;
  382. -webkit-animation:LOADING1 4s linear 0s infinite;
  383. -o-animation:LOADING1 4s linear 0s infinite;
  384. animation:LOADING1 4s linear 0s infinite;
  385. }
  386. .loading-animation .l2 path {
  387. fill:rgba(242,242,242,.1);
  388. stroke-dasharray:340;
  389. stroke-dashoffset:340;
  390. -webkit-animation:LOADING2 3s linear 0s infinite;
  391. -o-animation:LOADING2 3s linear 0s infinite;
  392. animation:LOADING2 3s linear 0s infinite;
  393. }
  394. .loading-animation .l3 path {
  395. fill:none;
  396. stroke-width:1;
  397. stroke-dasharray:33;
  398. stroke-dashoffset:33;
  399. -webkit-animation:LOADING3 2s linear 0s infinite;
  400. -o-animation:LOADING3 2s linear 0s infinite;
  401. animation:LOADING3 2s linear 0s infinite;
  402. }
  403. @-webkit-keyframes LOADING1 {
  404. 0%{stroke-dashoffset:-900;}
  405. 50%{stroke-dashoffset:0;}
  406. 100%{stroke-dashoffset:900;}
  407. }
  408. @-moz-keyframes LOADING1 {
  409. 0%{stroke-dashoffset:-900;}
  410. 50%{stroke-dashoffset:0;}
  411. 100%{stroke-dashoffset:900;}
  412. }
  413. @-o-keyframes LOADING1 {
  414. 0%{stroke-dashoffset:-900;}
  415. 50%{stroke-dashoffset:0;}
  416. 100%{stroke-dashoffset:900;}
  417. }
  418. @keyframes LOADING1 {
  419. 0%{stroke-dashoffset:-900;}
  420. 50%{stroke-dashoffset:0;}
  421. 100%{stroke-dashoffset:900;}
  422. }
  423. @-webkit-keyframes LOADING2 {
  424. 0%{stroke-dashoffset:340;}
  425. 50%{stroke-dashoffset:0;}
  426. 100%{stroke-dashoffset:-340;}
  427. }
  428. @-moz-keyframes LOADING2 {
  429. 0%{stroke-dashoffset:340;}
  430. 50%{stroke-dashoffset:0;}
  431. 100%{stroke-dashoffset:-340;}
  432. }
  433. @-o-keyframes LOADING2 {
  434. 0%{stroke-dashoffset:340;}
  435. 50%{stroke-dashoffset:0;}
  436. 100%{stroke-dashoffset:-340;}
  437. }
  438. @keyframes LOADING2 {
  439. 0%{stroke-dashoffset:340;}
  440. 50%{stroke-dashoffset:0;}
  441. 100%{stroke-dashoffset:-340;}
  442. }
  443. @-webkit-keyframes LOADING3 {
  444. 0%{stroke-dashoffset:-230;}
  445. 50%{stroke-dashoffset:0;}
  446. 100%{stroke-dashoffset:230;}
  447. }
  448. @-moz-keyframes LOADING3 {
  449. 0%{stroke-dashoffset:-230;}
  450. 50%{stroke-dashoffset:0;}
  451. 100%{stroke-dashoffset:230;}
  452. }
  453. @-o-keyframes LOADING3 {
  454. 0%{stroke-dashoffset:-230;}
  455. 50%{stroke-dashoffset:0;}
  456. 100%{stroke-dashoffset:230;}
  457. }
  458. @keyframes LOADING3 {
  459. 0%{stroke-dashoffset:-230;}
  460. 50%{stroke-dashoffset:0;}
  461. 100%{stroke-dashoffset:230;}
  462. }
  463. .svg-wrap .l1 {
  464. -webkit-animation:TURN 3s linear 0s infinite;
  465. -o-animation:TURN 3s linear 0s infinite;
  466. animation:TURN 3s linear 0s infinite;
  467. }
  468. .svg-wrap .l2 {
  469. -webkit-animation:TURN 2s linear 0s infinite;
  470. -o-animation:TURN 2s linear 0s infinite;
  471. animation:TURN 2s linear 0s infinite;
  472. }
  473. .svg-wrap .l3 {
  474. -webkit-animation:TURN 4.5s linear 0s infinite;
  475. -o-animation:TURN 4.5s linear 0s infinite;
  476. animation:TURN 4.5s linear 0s infinite;
  477. }
  478. @-webkit-keyframes TURN {
  479. 0%{-webkit-transform:rotateY(0deg);opacity:1}
  480. 25%{-webkit-transform:rotateY(90deg);opacity:.6}
  481. 50%{-webkit-transform:rotateY(180deg);opacity:1}
  482. 75%{-webkit-transform:rotateY(270deg);opacity:.6}
  483. 100%{-webkit-transform:rotateY(360deg);opacity:1}}
  484. @-webkit-keyframes TURNBACK {
  485. 0%{-webkit-transform:rotateY(360deg);opacity:1}
  486. 25%{-webkit-transform:rotateY(270deg);opacity:.6}
  487. 50%{-webkit-transform:rotateY(180deg);opacity:1}
  488. 75%{-webkit-transform:rotateY(90deg);opacity:.6}
  489. 100%{-webkit-transform:rotateY(0deg);opacity:1}}
  490. /*============================================
  491. Navbar
  492. ==============================================*/
  493. .navbar {
  494. -webkit-transition: background-color 0.3s;
  495. -moz-transition: background-color 0.3s;
  496. transition: background-color 0.3s;
  497. -webkit-transform: translate3d(0, 0, 0);
  498. -moz-transform: translate3d(0, 0, 0);
  499. -ms-transform: translate3d(0, 0, 0);
  500. -o-transform: translate3d(0, 0, 0);
  501. transform: translate3d(0, 0, 0);
  502. }
  503. .navbar.fixed {
  504. position: fixed;
  505. top: 0;
  506. transform: translate3d(0, -100%, 0); /* hide upward, self-relative — no hard-coded height */
  507. transition: transform .3s ease-in-out;
  508. }
  509. .navbar.visible {
  510. transform: translate3d(0, 0, 0); /* slide back to top:0 regardless of navbar height */
  511. background-color: rgba(72, 76, 87, 0.7);
  512. }
  513. #nav {
  514. width: 100%;
  515. }
  516. .nav-toggle.active span {
  517. background-color: transparent;
  518. }
  519. .nav-toggle.active span:before, .nav-toggle.active span:after {
  520. top: 0;
  521. }
  522. .nav-toggle.active span:before {
  523. transform: rotate(45deg);
  524. -webkit-transform: rotate(45deg);
  525. -o-transform: rotate(45deg);
  526. }
  527. .nav-toggle.active span:after {
  528. transform: rotate(-45deg);
  529. -webkit-transform: rotate(-45deg);
  530. -o-transform: rotate(-45deg);
  531. }
  532. .entry-content ol {
  533. padding: 0 25px;
  534. list-style: decimal outside;
  535. }
  536. #archives li {
  537. list-style: none;
  538. margin: 2px 8px;
  539. float: left;
  540. }
  541. /*============================================
  542. Header
  543. ==============================================*/
  544. .site-title {
  545. float: right;
  546. padding: 15px 0;
  547. font-family: 'Playfair Display', serif;
  548. font-weight: 700;
  549. }
  550. .site-title a {
  551. color: #fff;
  552. text-decoration: none;
  553. border: none;
  554. outline: none;
  555. }
  556. img.dw {
  557. float: right;
  558. margin: 15px 0;
  559. }
  560. .logo {
  561. margin: 0 auto;
  562. vertical-align: top;
  563. }
  564. /*============================================
  565. Footer
  566. ==============================================*/
  567. .footer {
  568. padding: 90px 0 30px;
  569. }
  570. .footer-home {
  571. padding: 90px 0 50px;
  572. }
  573. .footer a {
  574. color: #777777;
  575. }
  576. .footer a:hover {
  577. color: #FFFFFF;
  578. text-decoration: none;
  579. }
  580. p.cc {
  581. float: right;
  582. font-size: 14px;
  583. margin: 2px 20px 30px 10px;
  584. }
  585. /*============================================
  586. Footer — home (ported from /work)
  587. ==============================================*/
  588. /* fonts scoped to the home footer for now (Inter / Playfair Display / Gaegu) */
  589. @font-face {
  590. font-family: 'Inter';
  591. font-style: normal;
  592. font-weight: 400;
  593. font-display: swap;
  594. src: url('fonts/Inter-Regular.woff2') format('woff2');
  595. }
  596. @font-face {
  597. font-family: 'Inter';
  598. font-style: normal;
  599. font-weight: 600;
  600. font-display: swap;
  601. src: url('fonts/Inter-SemiBold.woff2') format('woff2');
  602. }
  603. @font-face {
  604. font-family: 'Playfair Display';
  605. font-style: normal;
  606. font-weight: 300 900; /* variable (wght axis); wdth pinned 100, opsz pinned 20, latin subset */
  607. font-display: swap;
  608. src: url('fonts/playfair-display-var.woff2') format('woff2');
  609. }
  610. @font-face {
  611. font-family: 'Gaegu';
  612. font-style: normal;
  613. font-weight: 300;
  614. font-display: swap;
  615. src: url('fonts/gaegu-v15-latin-300.woff2') format('woff2');
  616. }
  617. #dw-footer {
  618. background-color: #484c57;
  619. color: #dadada;
  620. font-family: 'Inter', sans-serif;
  621. margin: 6rem 0 0;
  622. padding: 6rem 0 4rem;
  623. }
  624. #dw-footer h5 {
  625. font-family: 'Playfair Display', serif;
  626. font-weight: 900;
  627. font-size: 1.3rem;
  628. line-height: 1.2;
  629. color: #dadada;
  630. margin: 0;
  631. }
  632. #dw-footer address {
  633. font-style: normal;
  634. line-height: 1.9;
  635. }
  636. #dw-footer a {
  637. position: relative;
  638. color: #dadada;
  639. fill: #dadada;
  640. text-decoration: none;
  641. }
  642. #dw-footer a:hover {
  643. color: #25c2a0;
  644. fill: #25c2a0;
  645. }
  646. #dw-footer .br-widget {
  647. margin: 4rem 0 0;
  648. }
  649. #dw-footer .br-widget:first-child {
  650. margin-top: 0;
  651. }
  652. #dw-footer ul.footer-links {
  653. list-style: none;
  654. margin: 0;
  655. padding: 0;
  656. }
  657. #dw-footer ul.footer-links li {
  658. margin: 0 0 .35rem;
  659. padding: 0 0 .35rem;
  660. }
  661. #dw-footer ul.footer-links li:last-child {
  662. margin-bottom: 0;
  663. }
  664. /* sliding underline on hover (left-to-right) */
  665. #dw-footer .br-widget a:before,
  666. #dw-footer .footer-end a:before {
  667. content: '';
  668. position: absolute;
  669. bottom: 0;
  670. right: 0;
  671. height: 1px;
  672. width: 0;
  673. background: currentColor;
  674. transition: width 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  675. }
  676. #dw-footer .br-widget a:hover:before,
  677. #dw-footer .footer-end a:hover:before {
  678. left: 0;
  679. right: initial;
  680. width: 100%;
  681. }
  682. #dw-footer .footer-end {
  683. margin-top: 4rem;
  684. padding-top: 2rem;
  685. }
  686. #dw-footer .footer-end .copyright {
  687. font-size: 12px;
  688. color: #9a9ea8;
  689. }
  690. #dw-footer .footer-end .gaegu {
  691. font-family: 'Gaegu', serif;
  692. font-weight: 300;
  693. margin-bottom: 0;
  694. }
  695. #dw-footer ul.footer-social {
  696. list-style: none;
  697. display: flex;
  698. gap: 16px;
  699. justify-content: flex-end;
  700. margin: .5rem 0 0;
  701. padding: 0;
  702. }
  703. #dw-footer ul.footer-social li {
  704. margin: 0;
  705. padding: 0;
  706. }
  707. #dw-footer ul.footer-social .dw-icon-2x {
  708. width: 22px;
  709. height: 22px;
  710. }
  711. @media (max-width: 767.98px) {
  712. #dw-footer .footer-end .gaegu,
  713. #dw-footer ul.footer-social {
  714. justify-content: flex-start;
  715. }
  716. #dw-footer .footer-end .col-md-6.text-md-end {
  717. text-align: left;
  718. }
  719. }
  720. /*============================================
  721. Intro
  722. ==============================================*/
  723. @keyframes blink {
  724. 0% { opacity: 0; }
  725. 25% { opacity: 1; }
  726. 50% { opacity: 1; }
  727. 100% { opacity: 0; }
  728. }
  729. @-webkit-keyframes blink {
  730. 0% { opacity: 0; }
  731. 25% { opacity: 1; }
  732. 50% { opacity: 1; }
  733. 100% { opacity: 0; }
  734. }
  735. @-ms-keyframes blink {
  736. 0% { opacity: 0; }
  737. 25% { opacity: 1; }
  738. 50% { opacity: 1; }
  739. 100% { opacity: 0; }
  740. }
  741. @-moz-keyframes blink {
  742. 0% { opacity: 0; }
  743. 25% { opacity: 1; }
  744. 50% { opacity: 1; }
  745. 100% { opacity: 0; }
  746. }
  747. [contenteditable] {outline: none;}
  748. #caro {
  749. min-height: 400px;
  750. }
  751. .hide-svg {
  752. visibility: hidden;
  753. }
  754. .fade-svg {
  755. -webkit-animation: fadeOut 1s;
  756. -moz-animation: fadeOut 1s;
  757. -o-animation: fadeOut 1s;
  758. animation: fadeOut 1s;
  759. }
  760. .show-svg {
  761. -webkit-animation: fadeIn 1s;
  762. -moz-animation: fadeIn 1s;
  763. -o-animation: fadeIn 1s;
  764. animation: fadeIn 1s;
  765. }
  766. #caro #svg-imac {
  767. height: 290px;
  768. }
  769. #caro #svg-imac.bg {
  770. background: transparent url('img/web.gif') no-repeat 28% 15%;
  771. background-size:95%;
  772. }
  773. #caro #svg-device {
  774. float:right;
  775. margin-top:-115px;
  776. height: 190px;
  777. }
  778. #caro #sv {
  779. height: 220px;
  780. }
  781. #caro #svg-mac {
  782. height: 290px;
  783. }
  784. #studio-caro {
  785. -webkit-transition: all 1s ease;
  786. -moz-transition: all 1s ease;
  787. -o-transition: all 1s ease;
  788. transition: all 1s ease;
  789. }
  790. .caro-grad {
  791. background:#404040;
  792. }
  793. .caro-grad2 {
  794. background: #000000;
  795. }
  796. .caro-grad3 {
  797. background: #ffffff;
  798. }
  799. .caro-grad5 {
  800. background: none;
  801. }
  802. .blur {
  803. -webkit-filter: blur(5px);
  804. -ms-filter: blur(5px);
  805. filter: blur(5px);
  806. }
  807. @-webkit-keyframes vidblur {
  808. 0% {-webkit-filter: blur(0px) saturate(0) hue-rotate(0deg);}
  809. 100% {-webkit-filter: blur(4px) saturate(2) hue-rotate(100deg);}
  810. }
  811. @-webkit-keyframes vidunblur {
  812. 0% {-webkit-filter: blur(4px) saturate(2) hue-rotate(100deg);;}
  813. 100% {-webkit-filter: blur(0px) saturate(0) hue-rotate(0deg);}
  814. }
  815. #tv.blur {
  816. -webkit-animation: vidblur 4s;
  817. animation: vidblur 4s;
  818. }
  819. #tv.unblur {
  820. -webkit-animation: vidunblur 4s;
  821. animation: vidunblur 4s;
  822. }
  823. .about {
  824. padding: 20px 0 50px;
  825. }
  826. table.icons tbody > tr {
  827. margin: 0px;
  828. padding: 0px;
  829. }
  830. table.icons tbody > tr > td {
  831. border:none;
  832. padding: 0px;
  833. }
  834. @media (min-width: 768px) {
  835. }
  836. form .actions button{
  837. margin: 20px 0;
  838. }
  839. .updates {
  840. background: rgba(237, 237, 237, 0.85);
  841. box-shadow: 0 0 25px rgba(0, 0, 0, .9);
  842. border-radius: 10px;
  843. padding: 0px 0 20px;
  844. display: none !important;
  845. }
  846. .updates a {
  847. color: #333;
  848. }
  849. .updates h5 {
  850. margin: 0;
  851. color: #999;
  852. }
  853. article.home {
  854. border-radius: 5px;
  855. }
  856. /*============================================
  857. Studio
  858. ==============================================*/
  859. .studio-tools{
  860. border-left: 1px solid #cecece;
  861. margin: 28px 0px;
  862. padding: 0 10px;
  863. }
  864. .studio-subnav {
  865. margin: 28px 0px;
  866. padding: 10px;
  867. }
  868. .studio-subnav a {
  869. color: #000;
  870. text-decoration: none;
  871. }
  872. .studio-subnav li.active a {
  873. color: #FF0000;
  874. text-decoration: none;
  875. border: none;
  876. }
  877. .studio-subnav a:hover {
  878. color: #FF0000;
  879. text-decoration: none;
  880. border: none;
  881. }
  882. #studio-tab h4 {
  883. line-height: 24px;
  884. }
  885. article.studio {
  886. background: #fff;
  887. padding: 0 15px 10px;
  888. margin:0 0 20px;
  889. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  890. }
  891. .studio-thumbnail {
  892. max-height:180px;
  893. overflow:hidden;
  894. }
  895. img.studio-thumb {
  896. box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  897. -webkit-filter: saturate(0) opacity(0.6);
  898. filter: saturate(0) opacity(0.6);
  899. -webkit-transition: all 1s;
  900. transition: all 1s;
  901. }
  902. img.studio-thumb:hover {
  903. -webkit-filter: saturate(1) opacity(1);
  904. filter: saturate(1) opacity(1);
  905. }
  906. /*============================================
  907. Art
  908. ==============================================*/
  909. .art-gallery {
  910. background: #313131;
  911. }
  912. body.art .site-title a {
  913. color: #FFFFFF;
  914. }
  915. .art a {
  916. color: #2F3446;
  917. }
  918. .art a:hover {
  919. color: #cecece;
  920. text-decoration: none;
  921. }
  922. .art a:active {
  923. color: #FFFFFF;
  924. text-decoration: none;
  925. }
  926. .art-image {
  927. border: 10px solid #FFFFFF;
  928. max-height: 800px;
  929. margin: auto;
  930. }
  931. .art-gallery .controls {
  932. position: relative;
  933. bottom: 0;
  934. }
  935. .art-gallery .prev-next {
  936. margin: 10px 0 10px;
  937. }
  938. .studio .entry-content {
  939. height: 120px;
  940. }
  941. /*============================================
  942. Now
  943. ==============================================*/
  944. .desk ul.now-doing li{
  945. color: #4e4e4e;
  946. line-height: 1.4em;
  947. margin: 0 0 5px 0;
  948. }
  949. /*============================================
  950. Desk
  951. ==============================================*/
  952. .row.desk {
  953. background:#dadada;
  954. padding:96px; /* match the block pages' .entry-content card (1in APA margins) */
  955. border-radius:6px;
  956. }
  957. .desk li {
  958. color: #777
  959. }
  960. h1#now {
  961. color: #ffffff;
  962. }
  963. /*============================================
  964. Music
  965. ==============================================*/
  966. .albums {
  967. position: relative;
  968. display: flex;
  969. flex-wrap: wrap;
  970. gap: 6px;
  971. }
  972. .albums:after {
  973. content: "";
  974. display: table;
  975. clear: both;
  976. }
  977. .album {
  978. width: 150px;
  979. height: auto;
  980. position: relative;
  981. font-size: 12px;
  982. -webkit-transition: -webkit-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  983. -moz-transition: -moz-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  984. -o-transition: -o-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  985. transition: transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  986. -webkit-perspective: 600px;
  987. perspective: 600px;
  988. }
  989. .album img {
  990. width: 100%;
  991. aspect-ratio: 1 / 1;
  992. object-fit: cover;
  993. display: block;
  994. }
  995. .album h1, .album h2, .album h3 {
  996. font-size: 13px;
  997. line-height: 15px;
  998. }
  999. .album .front, .album .back {
  1000. float: none;
  1001. width: 100%;
  1002. height: auto;
  1003. -webkit-transform-style: preserve-3d;
  1004. transform-style: preserve-3d;
  1005. -webkit-transition: -webkit-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1006. -moz-transition: -moz-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1007. -o-transition: -o-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1008. transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1009. }
  1010. .album .front {
  1011. z-index: 1;
  1012. -webkit-transform: rotateY(0deg);
  1013. -moz-transform: rotateY(0deg);
  1014. -ms-transform: rotateY(0deg);
  1015. -o-transform: rotateY(0deg);
  1016. transform: rotateY(0deg);
  1017. }
  1018. .album .front .alpha {
  1019. -webkit-transition: opacity 0.4s ease-in-out;
  1020. -moz-transition: opacity 0.4s ease-in-out;
  1021. -o-transition: opacity 0.4s ease-in-out;
  1022. transition: opacity 0.4s ease-in-out;
  1023. display: block;
  1024. content: '';
  1025. height: 100%;
  1026. width: 100%;
  1027. position: absolute;
  1028. top: 0;
  1029. left: 0;
  1030. background: rgba(255, 255, 255, 0.85);
  1031. opacity: 0;
  1032. }
  1033. .album .back {
  1034. position: absolute;
  1035. top: 0;
  1036. left: 0;
  1037. z-index: 0;
  1038. text-align: center;
  1039. font-family: sans-serif;
  1040. padding: 10px;
  1041. opacity: 0;
  1042. -webkit-box-sizing: border-box;
  1043. -moz-box-sizing: border-box;
  1044. box-sizing: border-box;
  1045. -webkit-backface-visibility: hidden;
  1046. backface-visibility: hidden;
  1047. -webkit-transform: rotateY(-180deg);
  1048. -moz-transform: rotateY(-180deg);
  1049. -ms-transform: rotateY(-180deg);
  1050. -o-transform: rotateY(-180deg);
  1051. transform: rotateY(-180deg);
  1052. }
  1053. .album.flip {
  1054. -webkit-transform: scale(1.1, 1.1);
  1055. -moz-transform: scale(1.1, 1.1);
  1056. -ms-transform: scale(1.1, 1.1);
  1057. -o-transform: scale(1.1, 1.1);
  1058. transform: scale(1.1, 1.1);
  1059. z-index: 10;
  1060. }
  1061. .album.flip .front {
  1062. -webkit-transform: rotateY(180deg);
  1063. -moz-transform: rotateY(180deg);
  1064. -ms-transform: rotateY(180deg);
  1065. -o-transform: rotateY(180deg);
  1066. transform: rotateY(180deg);
  1067. }
  1068. .album.flip .front .alpha {
  1069. opacity: 1;
  1070. }
  1071. .album.flip .back {
  1072. z-index: 2;
  1073. opacity: 1;
  1074. -webkit-transform: rotateY(0deg);
  1075. -moz-transform: rotateY(0deg);
  1076. -ms-transform: rotateY(0deg);
  1077. -o-transform: rotateY(0deg);
  1078. transform: rotateY(0deg);
  1079. }
  1080. .album {
  1081. width: 20%;
  1082. -webkit-text-size-adjust: none;
  1083. }
  1084. #music li.list-group-item {
  1085. padding: 5px 15px;
  1086. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  1087. font-size: 12px;
  1088. }
  1089. #music.entry-content ul {
  1090. margin:0 0 24px;
  1091. }
  1092. @media screen and (max-width: 768px) {
  1093. .album h1, .album h2, .album h3 {
  1094. font-size: 13px;
  1095. line-height: 15px;
  1096. }
  1097. .album {
  1098. width: 25%;
  1099. }
  1100. }
  1101. @media screen and (min-width: 992px) {
  1102. .album h1, .album h2, .album h3 {
  1103. font-size: 15px;
  1104. line-height: 17px;
  1105. }
  1106. }
  1107. div#player{
  1108. width: 100%;
  1109. color: #555555;
  1110. font-family: 'PT Sans', sans-serif;
  1111. font-weight: 700;
  1112. font-size: 12px;
  1113. }
  1114. #song-information{
  1115. text-align: left;
  1116. margin: 0 0 10px;
  1117. }
  1118. #controls{
  1119. float: left;
  1120. }
  1121. #amplitude-volume-slider{
  1122. width: 90%;
  1123. float: right;
  1124. }
  1125. #amplitude-play-pause{
  1126. width: 15px;
  1127. height: 17px;
  1128. margin: 0 5px 0 0;
  1129. cursor: pointer;
  1130. float: right;
  1131. }
  1132. #amplitude-current-time{
  1133. font-family: 'PT Sans', sans-serif;
  1134. font-size: 14px;
  1135. font-weight: 400;
  1136. }
  1137. .amplitude-paused{
  1138. background-image: url('img/small-gray-play.png');
  1139. background-repeat: no-repeat;
  1140. }
  1141. .amplitude-playing{
  1142. background-image: url('img/small-gray-pause.png');
  1143. background-repeat: no-repeat;
  1144. }
  1145. #amplitude-now-playing-name{
  1146. }
  1147. #amplitude-now-playing-listeners{
  1148. }
  1149. #amplitude-now-playing-bitrate{
  1150. }
  1151. /*============================================
  1152. Anatlyics
  1153. ==============================================*/
  1154. .widget {
  1155. background:#000 !important;
  1156. }
  1157. .map {
  1158. height:500px;
  1159. }
  1160. /*============================================
  1161. ==============================================
  1162. General Content
  1163. ==============================================
  1164. ==============================================*/
  1165. .screen-reader {
  1166. text-indent: -10000px;
  1167. top:auto;
  1168. width:1px;
  1169. height:1px;
  1170. overflow:hidden;
  1171. }
  1172. .divider {
  1173. border-bottom: 1px solid #cecece;
  1174. width:100%;
  1175. margin: 30px 0 30px;
  1176. }
  1177. #content {
  1178. margin-bottom: 36px;
  1179. margin-top: 100px;
  1180. }
  1181. #content,
  1182. #content input,
  1183. #content textarea {
  1184. color: #111;
  1185. }
  1186. #content p,
  1187. #content ul,
  1188. #content ol,
  1189. #content dd,
  1190. #content pre,
  1191. #content hr {
  1192. margin-bottom: 24px;
  1193. }
  1194. #content ul ul,
  1195. #content ol ol,
  1196. #content ul ol,
  1197. #content ol ul {
  1198. margin-bottom: 0;
  1199. }
  1200. #content pre,
  1201. #content kbd,
  1202. #content tt,
  1203. #content var {
  1204. font-size: 15px;
  1205. line-height: 21px;
  1206. }
  1207. #content code {
  1208. font-size: 13px;
  1209. }
  1210. #content dt,
  1211. #content th {
  1212. color: #000;
  1213. }
  1214. #content h1,
  1215. #content h2,
  1216. #content h3,
  1217. #content h4,
  1218. #content h5,
  1219. #content h6 {
  1220. color: #000;
  1221. line-height: 1.5em;
  1222. margin: 0 0 16px 0;
  1223. }
  1224. #content table {
  1225. border: 1px solid #e7e7e7;
  1226. margin: 0 -1px 24px 0;
  1227. text-align: left;
  1228. width: 100%;
  1229. }
  1230. #content tr th,
  1231. #content thead th {
  1232. color: #888;
  1233. font-size: 12px;
  1234. font-weight: bold;
  1235. line-height: 18px;
  1236. padding: 9px 24px;
  1237. }
  1238. #content tr td {
  1239. border-top: 1px solid #e7e7e7;
  1240. padding: 6px 24px;
  1241. }
  1242. #content tr.odd td {
  1243. background: #f2f7fc;
  1244. }
  1245. .hentry {
  1246. margin: 0 0 30px 0;
  1247. }
  1248. .home .sticky {
  1249. background: #f2f7fc;
  1250. border-top: 4px solid #000;
  1251. margin-left: -20px;
  1252. margin-right: -20px;
  1253. padding: 18px 20px;
  1254. }
  1255. .single .hentry {
  1256. margin: 0 0 36px 0;
  1257. }
  1258. .page-title {
  1259. color: #000;
  1260. font-size: 14px;
  1261. font-weight: bold;
  1262. margin: 0 0 36px 0;
  1263. }
  1264. .page-title span {
  1265. color: #333;
  1266. font-size: 16px;
  1267. font-style: italic;
  1268. font-weight: normal;
  1269. }
  1270. .entry-caption-parent .page-title span {
  1271. color: #777;
  1272. font-size: 12px;
  1273. font-style: italic;
  1274. font-weight: normal;
  1275. }
  1276. .nav-previous span.meta-nav {
  1277. color: #555;
  1278. font-size: 18px;
  1279. font-weight: normal;
  1280. }
  1281. .nav-next span.meta-nav {
  1282. color: #555;
  1283. font-size: 16px;
  1284. font-weight: normal;
  1285. }
  1286. .page-title a:link,
  1287. .page-title a:visited {
  1288. color: #888;
  1289. text-decoration: none;
  1290. }
  1291. .page-title a:active,
  1292. .page-title a:hover {
  1293. color: #2a6496;
  1294. }
  1295. #content .entry-title {
  1296. color: #000;
  1297. font-size: 26px;
  1298. font-weight: bold;
  1299. line-height: 1.3em;
  1300. margin: 20px 0 20px;
  1301. }
  1302. h2.entry-title {
  1303. color: #999;
  1304. }
  1305. .entry-title a:link,
  1306. .entry-title a:visited {
  1307. color: #000;
  1308. text-decoration: none;
  1309. }
  1310. .entry-title a:active,
  1311. .entry-title a:hover {
  1312. color: #2a6496;
  1313. }
  1314. .entry-meta {
  1315. color: #888;
  1316. font-size: 12px;
  1317. }
  1318. .entry-meta abbr,
  1319. .entry-utility abbr {
  1320. border: none;
  1321. }
  1322. .entry-meta abbr:hover,
  1323. .entry-utility abbr:hover {
  1324. border-bottom: 1px dotted #666;
  1325. }
  1326. .entry-content,
  1327. .entry-summary {
  1328. clear: both;
  1329. }
  1330. .entry-content p {
  1331. font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
  1332. }
  1333. /* Block page content (templates/page.html) — light card over the dark page bg.
  1334. Scoped to the group wrapper so it doesn't double up with the nested
  1335. .wp-block-post-content.entry-content. */
  1336. .wp-block-group.entry-content {
  1337. background: #dadada;
  1338. padding: 96px; /* 1in APA-style margins on all sides (96px = 1in) */
  1339. border-radius: 6px;
  1340. }
  1341. .signature {
  1342. float: right;
  1343. margin: 10px 150px 40px 0px;
  1344. }
  1345. span.author {
  1346. display:none;
  1347. }
  1348. #inside h3 {
  1349. font: 16px "Courier New", Courier, mono;
  1350. line-height: 10px;
  1351. margin: 0 0 10px 0;
  1352. }
  1353. #inside p {
  1354. margin: 0 0 10px 0;
  1355. line-height: 20px;
  1356. }
  1357. #content .entry-summary p:last-child {
  1358. margin-bottom: 12px;
  1359. }
  1360. .entry-content fieldset {
  1361. margin: 0 0 24px 0;
  1362. padding: 24px;
  1363. }
  1364. .entry-content fieldset legend {
  1365. background: #fff;
  1366. color: #000;
  1367. font-weight: bold;
  1368. padding: 0 24px;
  1369. }
  1370. .entry-content input {
  1371. margin: 0 0 20px 0;
  1372. }
  1373. .entry-content input.file,
  1374. .entry-content input.button {
  1375. margin-right: 24px;
  1376. }
  1377. .entry-content label {
  1378. color: #888;
  1379. font-size: 12px;
  1380. }
  1381. .entry-content select {
  1382. margin: 0 0 24px 0;
  1383. }
  1384. .entry-content sup,
  1385. .entry-content sub {
  1386. font-size: 10px;
  1387. }
  1388. .entry-content blockquote {
  1389. border-left:none;
  1390. font-style:italic;
  1391. margin: 0 0px 20px;
  1392. color:#333;
  1393. background:#eeeeeec7;
  1394. padding:20px;
  1395. }
  1396. blockquote p {
  1397. margin: 0 0 12px !important;
  1398. }
  1399. .wp-block-image figcaption {
  1400. display: block !important;
  1401. }
  1402. .entry-content blockquote cite {
  1403. text-align:right;
  1404. margin-bottom:0;
  1405. }
  1406. .entry-content blockquote cite p {
  1407. text-align:right;
  1408. margin-bottom:0 !important;
  1409. }
  1410. .entry-content blockquote.left {
  1411. float: left;
  1412. margin-left: 0;
  1413. margin-right: 24px;
  1414. text-align: right;
  1415. width: 33%;
  1416. }
  1417. .entry-content blockquote.right {
  1418. float: right;
  1419. margin-left: 24px;
  1420. margin-right: 0;
  1421. text-align: left;
  1422. width: 33%;
  1423. }
  1424. body.page .edit-link {
  1425. clear: both;
  1426. display: block;
  1427. }
  1428. .entry-meta a,
  1429. .entry-utility a {
  1430. color: #888;
  1431. }
  1432. .entry-meta a:hover,
  1433. .entry-utility a:hover {
  1434. color: #ff4b33;
  1435. }
  1436. #content .video-player {
  1437. padding: 0;
  1438. }
  1439. .date {
  1440. float: right;
  1441. margin: 0px 0 20px 50px;
  1442. color: #777;
  1443. font: 14px/18px "Courier New", Courier, mono;
  1444. }
  1445. #content ul li li {
  1446. padding: 0 0 0 20px;
  1447. }
  1448. .list-group-horizontal .list-group-item {
  1449. display: inline-block;
  1450. }
  1451. .list-group-horizontal .list-group-item {
  1452. margin-bottom: 0;
  1453. margin-left:-2px;
  1454. margin-right: 0;
  1455. }
  1456. .list-group-horizontal .list-group-item:first-child {
  1457. border-top-right-radius:0;
  1458. border-bottom-left-radius:4px;
  1459. }
  1460. .list-group-horizontal .list-group-item:last-child {
  1461. border-top-right-radius:4px;
  1462. border-bottom-left-radius:0;
  1463. }
  1464. .archive-page {
  1465. background:#fff;
  1466. box-shadow: 0 0 5px rgba(0,0,0,.1);
  1467. padding: 70px 100px 140px;
  1468. }
  1469. .single-card .entry-title {
  1470. margin-bottom:5px !important;
  1471. }
  1472. article.studio {
  1473. background: #fff;
  1474. padding: 0 15px 10px;
  1475. margin:0 0 20px;
  1476. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  1477. }
  1478. .archive-thumbnail {
  1479. max-height:180px;
  1480. overflow:hidden;
  1481. }
  1482. img.archive-thumb {
  1483. box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  1484. -webkit-filter: saturate(1) opacity(1);
  1485. filter: saturate(1) opacity(1);
  1486. -webkit-transition: all 1s;
  1487. transition: all 1s;
  1488. }
  1489. img.archive-thumb:hover {
  1490. -webkit-filter: saturate(3) opacity(1) invert(.8);
  1491. filter: saturate(3) opacity(1) invert(.8);
  1492. }
  1493. /*============================================
  1494. Meta
  1495. ==============================================*/
  1496. .meta {
  1497. font-size: 11px;
  1498. }
  1499. .categories-fb {
  1500. text-align: right;
  1501. }
  1502. span.fb {
  1503. width: 16px;
  1504. height: 16px;
  1505. margin-left: 5px;
  1506. padding: 3px 4px 2px 5px;
  1507. background-image: url(img/fb1.png) ;
  1508. background-position: 0 16px;
  1509. position: relative;
  1510. -webkit-transition: all ease 0.3s;
  1511. -moz-transition: all ease 0.3s;
  1512. -o-transition: all ease 0.3s;
  1513. transition: all ease 0.3s;
  1514. }
  1515. span.fb:hover {
  1516. background-position: 0 0;
  1517. }
  1518. /*============================================
  1519. Comments
  1520. ==============================================*/
  1521. .commentbubble {
  1522. font-family:"CM Type";
  1523. font-size: 13px;
  1524. color: #777;
  1525. margin: 0px 15px 0 0;
  1526. }
  1527. .comment {
  1528. padding: 10px;
  1529. }
  1530. .comments-area {
  1531. background: rgba(242,242,242,.7);
  1532. padding: 15px;
  1533. margin: 60px 0 0 0;
  1534. }
  1535. #content .comments-area p {
  1536. margin: 0 0 8px;
  1537. font-size: 13px;
  1538. }
  1539. #content .comments-area .reply {
  1540. margin: 5px 8px 0px;
  1541. padding: 2px 9px;
  1542. background: rgba(242,242,242,.5);
  1543. font-size: 11px;
  1544. }
  1545. .comments-title {
  1546. margin-bottom: 48px;
  1547. font-size: 16px;
  1548. line-height: 1.5;
  1549. font-weight: normal;
  1550. }
  1551. .comments-area ul {
  1552. margin: 0px 0px;
  1553. list-style: none;
  1554. }
  1555. .comments-area h3 {
  1556. margin: 0 0 0;
  1557. }
  1558. .comments-meta {
  1559. font-size: 10px;
  1560. }
  1561. .comments-area article {
  1562. margin: 24px 0;
  1563. }
  1564. .comments-area article header {
  1565. margin: 0 0 48px;
  1566. overflow: hidden;
  1567. position: relative;
  1568. }
  1569. .comments-area article header img {
  1570. float: left;
  1571. padding: 0;
  1572. line-height: 0;
  1573. }
  1574. .comments-area article header cite,
  1575. .comments-area article header time {
  1576. display: block;
  1577. margin-left: 85px;
  1578. }
  1579. .comments-area article header cite {
  1580. font-style: normal;
  1581. font-size: 15px;
  1582. }
  1583. .comments-area cite b {
  1584. font-weight: normal;
  1585. }
  1586. .comments-area article header time {
  1587. text-decoration: none;
  1588. font-size: 12px;
  1589. color: #5e5e5e;
  1590. }
  1591. .comments-area article header a {
  1592. text-decoration: none;
  1593. color: #5e5e5e;
  1594. }
  1595. .comments-area article header a:hover {
  1596. color: #21759b;
  1597. }
  1598. .comments-area article header cite a {
  1599. color: #444;
  1600. }
  1601. .comments-area article header cite a:hover {
  1602. text-decoration: underline;
  1603. }
  1604. .commentlist .pingback {
  1605. line-height: 1.714285714;
  1606. margin-bottom: 24px;
  1607. }
  1608. li.comment.even {
  1609. background: #fff;
  1610. }
  1611. li.comment.odd {
  1612. background: #f3f3f3;
  1613. }
  1614. li.comment.thread-even {
  1615. background: #f5f5f5;
  1616. }
  1617. li.comment.thread-odd {
  1618. background: #fff;
  1619. }
  1620. .comment-meta {
  1621. font-size: 11px;
  1622. line-height: 12px;
  1623. }
  1624. .comment-meta a {
  1625. color: #777;
  1626. float: right;
  1627. margin-top: -15px;
  1628. }
  1629. /*====== Comment form ======*/
  1630. .required {
  1631. color: red;
  1632. }
  1633. .form-submit {
  1634. display: none;
  1635. }
  1636. .comment-form-author,
  1637. .comment-form-email,
  1638. .comment-form-url {
  1639. width: 50%;
  1640. }
  1641. /*============================================
  1642. Media
  1643. ==============================================*/
  1644. .video-container {
  1645. position: relative;
  1646. padding-bottom: 56.25%;
  1647. padding-top: 30px; height: 0; overflow: hidden;
  1648. }
  1649. .video-container iframe,
  1650. .video-container object,
  1651. .video-container embed {
  1652. position: absolute;
  1653. top: 0;
  1654. left: 0;
  1655. width: 100%;
  1656. height: 100%;
  1657. }
  1658. .category-gallery .size-thumbnail img {
  1659. border: 10px solid #f1f1f1;
  1660. margin-bottom: 0;
  1661. }
  1662. .category-gallery .gallery-thumb {
  1663. float: left;
  1664. margin-right: 20px;
  1665. margin-top: -4px;
  1666. }
  1667. .home #content .category-gallery .entry-utility {
  1668. padding-top: 4px;
  1669. }
  1670. /*===== Attachments =====*/
  1671. .single-attachment .hentry {
  1672. margin: 0px;
  1673. }
  1674. .attachment .entry-content .entry-caption {
  1675. font-size: 140%;
  1676. margin-top: 24px;
  1677. }
  1678. #content .entry-caption-attachment h2.entry-title {
  1679. margin: 0 0 5px;
  1680. font-weight: normal;
  1681. }
  1682. #content .entry-caption-parent p.page-title {
  1683. margin: -30px 0 0 0;
  1684. font: normal 13px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  1685. }
  1686. #content .entry-caption-parent p.page-title a {
  1687. color: #555;
  1688. }
  1689. #content .entry-caption-attachment p {
  1690. font-size: 14px;
  1691. text-indent: 0px;
  1692. line-height: 15px;
  1693. margin-bottom: 0px;
  1694. }
  1695. .attachment .entry-content .nav-previous a:before {
  1696. content: '\2190\00a0';
  1697. }
  1698. .attachment .entry-content .nav-next a:after {
  1699. content: '\00a0\2192';
  1700. }
  1701. /*===== Images ======*/
  1702. img.avatar {
  1703. width: 50px;
  1704. height: 50px;
  1705. -webkit-border-radius: 30px;
  1706. -moz-border-radius: 30px;
  1707. border-radius: 30px;
  1708. }
  1709. img.me {
  1710. height: 70px;
  1711. margin: 0 10px 0 0;
  1712. padding: 0 5px;
  1713. float: left;
  1714. -webkit-border-radius: 50%;
  1715. -moz-border-radius: 50%;
  1716. border-radius: 50%;
  1717. -webkit-filter: grayscale(1);
  1718. filter:grayscale(1);
  1719. }
  1720. .entry-content img {
  1721. max-width: 100%;
  1722. height: auto;
  1723. }
  1724. #content .home img {
  1725. border: 15px solid #000;
  1726. }
  1727. #content .alignleft,
  1728. #content img.alignleft {
  1729. display: inline;
  1730. float: left;
  1731. margin-right: 24px;
  1732. margin-top: 4px;
  1733. }
  1734. #content .alignright,
  1735. #content img.alignright {
  1736. display: inline;
  1737. float: right;
  1738. margin-left: 24px;
  1739. margin-top: 4px;
  1740. }
  1741. #content .aligncenter,
  1742. #content img.aligncenter {
  1743. clear: both;
  1744. margin-left: auto;
  1745. margin-right: auto;
  1746. }
  1747. #content img.alignleft,
  1748. #content img.alignright,
  1749. #content img.aligncenter {
  1750. margin-bottom: 12px;
  1751. }
  1752. #content img.alignfull,
  1753. #content img.alignwide
  1754. {
  1755. max-width: 100vw;
  1756. width: 100vw;
  1757. }
  1758. #content .wp-caption {
  1759. color: #737373;
  1760. line-height: 18px;
  1761. margin-bottom: 20px;
  1762. padding: 4px;
  1763. text-align: center;
  1764. }
  1765. #content .wp-caption img {
  1766. margin: 5px 5px 0;
  1767. }
  1768. #content .wp-caption p.wp-caption-text {
  1769. color: #888;
  1770. font-size: 10px;
  1771. margin: 5px;
  1772. }
  1773. #content .attachment img {
  1774. display: block;
  1775. margin: 0 auto;
  1776. }
  1777. .gallery { margin: 0 auto 18px; }
  1778. .gallery .gallery-item {
  1779. float: left;
  1780. margin-top: 0;
  1781. text-align: center;
  1782. width: 33%;
  1783. }
  1784. .gallery-columns-2 .gallery-item { width: 50%; }
  1785. .gallery-columns-4 .gallery-item { width: 25%; }
  1786. .gallery img {
  1787. box-shadow: 0px 0px 4px #999;
  1788. border: 5px solid #000;
  1789. padding: 8px;
  1790. background: #555;
  1791. }
  1792. .gallery img:hover {
  1793. background: #777;
  1794. }
  1795. .gallery-columns-2 .attachment-medium {
  1796. max-width: 92%;
  1797. height: auto;
  1798. }
  1799. .gallery-columns-4 .attachment-thumbnail {
  1800. max-width: 84%;
  1801. height: auto;
  1802. }
  1803. .gallery .gallery-caption {
  1804. color: #888;
  1805. font-size: 12px;
  1806. margin: 0 0 12px;
  1807. }
  1808. .gallery dl, .gallery dt { margin: 0; }
  1809. .gallery br+br { display: none; }
  1810. /*============================================
  1811. Pagination
  1812. ==============================================*/
  1813. .navigation {
  1814. color: #888;
  1815. font-size: 12px;
  1816. line-height: 18px;
  1817. overflow: hidden;
  1818. clear: both;
  1819. }
  1820. .navigation a:link,
  1821. .navigation a:visited {
  1822. color: #888;
  1823. text-decoration: none;
  1824. }
  1825. .navigation a:active,
  1826. .navigation a:hover {
  1827. color: #ff4b33;
  1828. }
  1829. .nav-previous {
  1830. color: #333;
  1831. font-size: 17px;
  1832. float: left;
  1833. width: 50%;
  1834. margin: 0 0 15px 0;
  1835. }
  1836. .nav-next {
  1837. color: #333;
  1838. font-size: 17px;
  1839. float: right;
  1840. text-align: right;
  1841. width: 50%;
  1842. }
  1843. .paged #nav-above,
  1844. .single #nav-above {
  1845. display: block;
  1846. }
  1847. #nav-below {
  1848. margin: 50px 0 0px;
  1849. padding: 20px 10px 0;
  1850. border-top: 1px solid #cecece;
  1851. }
  1852. .pagination {
  1853. margin-top: 40px;
  1854. padding: 20px 0 0;
  1855. }
  1856. .pagination a {
  1857. padding: 4px 5px;
  1858. color: #fff;
  1859. font-weight: bold;
  1860. font-size: 16px;
  1861. }
  1862. .pagination a:active {
  1863. padding: 4px 5px;
  1864. background: #707071;
  1865. color:#fff;
  1866. }
  1867. .pagination a:hover {
  1868. padding: 4px 5px;
  1869. background: #fff;
  1870. color: #ec0000;
  1871. }
  1872. .pagination a.next,
  1873. .pagination a.prev {
  1874. padding: 4px 7px 25px;
  1875. margin-top:-7px;
  1876. color: #ec0000;
  1877. font-weight: bold;
  1878. font-size: 27px;
  1879. }
  1880. .pagination .current {
  1881. padding: 4px 5px;
  1882. background: #fff;
  1883. color: #ec0000;
  1884. font-weight: bold;
  1885. font-size: 16px;
  1886. }
  1887. .page-numbers {
  1888. padding: 4px 5px;
  1889. font-weight: bold;
  1890. font-size: 16px;
  1891. }
  1892. /*============================================
  1893. 404
  1894. ==============================================*/
  1895. .not-search {
  1896. margin: 30px;
  1897. padding: 10px;
  1898. height: 80px;
  1899. zoom: 180%;
  1900. }
  1901. .not-search button {
  1902. line-height: 20px;
  1903. }
  1904. /*===== Structure =====*/
  1905. .a:hover {
  1906. color: #1d8;
  1907. }
  1908. .leader {
  1909. padding: 100px 0 0;
  1910. }
  1911. .dark {
  1912. background: #222;
  1913. }
  1914. .bottom {
  1915. padding-top: 50px;
  1916. }
  1917. .centered {
  1918. float: none;
  1919. margin: 0 auto;
  1920. }
  1921. .border-left {
  1922. border-left: 1px solid #333;
  1923. }
  1924. article#main {
  1925. padding: 0px;
  1926. }
  1927. article#main .entry-content {
  1928. padding: 15px;
  1929. }
  1930. article h2 {
  1931. font-size: 28px;
  1932. }
  1933. article.single {
  1934. background: #fff;
  1935. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  1936. }
  1937. article.blurb {
  1938. background: #fff;
  1939. padding: 10px 15px;
  1940. margin:25px 0;
  1941. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  1942. }
  1943. .post {
  1944. margin-bottom: 40px;
  1945. }
  1946. article p {
  1947. text-indent: 12px;
  1948. }
  1949. article p img {
  1950. text-indent: 0px;
  1951. margin: 15px 0 15px -12px;
  1952. }
  1953. p.nobreak {
  1954. margin: 0 0 10px !important;
  1955. }
  1956. span.quiet {
  1957. display: none;
  1958. }
  1959. span.right {
  1960. float: right;
  1961. }
  1962. .entry-content ul {
  1963. margin: 10px 20px;
  1964. }
  1965. .entry-content ul.sitemap {
  1966. margin: 0;
  1967. }
  1968. .form-row.checkbox {
  1969. font-size: 0.85em;
  1970. }
  1971. /*============================================
  1972. Code - Sunburst Theme
  1973. ==============================================*/
  1974. pre {
  1975. background-color: #000 !important;
  1976. word-wrap: break-word;
  1977. margin: 0 0 20px 0;
  1978. padding: 10px;
  1979. color: #fff !important;
  1980. font-size: 14px;
  1981. }
  1982. pre, code {
  1983. font-family: 'Monaco', courier, monospace;
  1984. }
  1985. pre .comment {
  1986. color: #AEAEAE; font-style: italic;
  1987. }
  1988. pre .constant {
  1989. color: #3387CC;
  1990. }
  1991. pre .storage {
  1992. color: #99CF50;
  1993. }
  1994. pre .string, pre .entity.name.class, pre .comment.docstring {
  1995. color: #65B042;
  1996. }
  1997. pre .string.regexp {
  1998. color: #E9C062;
  1999. }
  2000. pre .string.constant {
  2001. color: #DDF2A4;
  2002. }
  2003. pre .constant.hex-color {
  2004. color: #DD7B3B;
  2005. }
  2006. pre .support, pre .tag.script, pre .function.call {
  2007. color: #dad085;
  2008. }
  2009. pre .support.css-property {
  2010. color: #C5AF75;
  2011. }
  2012. pre .support.tag.style {
  2013. color: #fff;
  2014. }
  2015. pre .keyword, pre .selector {
  2016. color: #E28964;
  2017. }
  2018. pre .keyword.namespace {
  2019. color: #3387CC;
  2020. font-weight: bold;
  2021. }
  2022. pre .inherited-class {
  2023. font-style: italic;
  2024. }
  2025. pre .entity, pre .variable.instance, pre .support.namespace, pre .support.tag, pre .support.tag-name {
  2026. color: #89BDFF;
  2027. }
  2028. pre .entity.name.id {
  2029. color: #8693A5;
  2030. }
  2031. *[data-language="c"] .function.call {
  2032. color: #8DA6CE;
  2033. }
  2034. pre .variable, pre .variable.global {
  2035. color: #3E87E3;
  2036. }
  2037. pre .variable.class {
  2038. }
  2039. .wp-block-video video {
  2040. max-width:100% !important;
  2041. width:100% !important;
  2042. height:auto !important;
  2043. }
  2044. figcaption {
  2045. text-align:right;
  2046. color: #777777;
  2047. font-size:13px;
  2048. }
  2049. ul.tags {
  2050. font-size:14px;
  2051. }
  2052. .chess-html {
  2053. padding: 0 5px 0 5px;
  2054. }
  2055. p.powerdby {
  2056. display:none;
  2057. }
  2058. .nav {
  2059. display:block;
  2060. }
  2061. .site-title {
  2062. float: right !important;
  2063. }
  2064. .navbar-right {
  2065. float: right !important;
  2066. margin-right: 0px;
  2067. }
  2068. .navbar .container {
  2069. display: block;
  2070. }
  2071. a {
  2072. color:#67000a;
  2073. }
  2074. a:hover {
  2075. color:#1a8;
  2076. }
  2077. .about a {
  2078. color:#ff4557;
  2079. }
  2080. li a {
  2081. font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  2082. font-size: .9em;
  2083. }
  2084. ul.bookmarks {
  2085. font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  2086. font-size: .9em;
  2087. }
  2088. .entry-title {
  2089. font-weight:600;
  2090. }
  2091. .navbar.visible {
  2092. background: rgba(72, 76, 87, 0.7); /* footer color (#484c57), translucent */
  2093. backdrop-filter: blur(6px);
  2094. }
  2095. .offcanvas {
  2096. background: #2b2e35d7;
  2097. }
  2098. ul.nav .list-group-item a {
  2099. color: #fff;
  2100. font-family: 'Playfair Display', serif;
  2101. font-weight: 700;
  2102. font-size: 1.35rem;
  2103. }
  2104. ul.nav .list-group-item a:hover {
  2105. color: #25c2a0;
  2106. }
  2107. ul.nav .list-group-item {
  2108. border:none;
  2109. background: none;
  2110. color: #fff;
  2111. }
  2112. ul.nav .list-group-item:first-child {
  2113. border-top-left-radius:0;
  2114. border-bottom-left-radius:0;
  2115. }
  2116. ul.nav .list-group-item:last-child {
  2117. border-top-right-radius:0;
  2118. border-bottom-right-radius:0;
  2119. }
  2120. ul.nav ul li {
  2121. margin-left: 15px;
  2122. }
  2123. figure {
  2124. margin: 1em 0px;
  2125. }
  2126. .wp-block-pullquote {
  2127. font-size: 24px;
  2128. margin: 10px 50px;
  2129. }