style.css 61 KB

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