style.css 52 KB

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