style.css 43 KB

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