style.css 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523
  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. }
  787. #studio-caro {
  788. -webkit-transition: all 1s ease;
  789. -moz-transition: all 1s ease;
  790. -o-transition: all 1s ease;
  791. transition: all 1s ease;
  792. }
  793. .caro-grad {
  794. background:#404040;
  795. }
  796. .caro-grad2 {
  797. background: #000000;
  798. }
  799. .caro-grad3 {
  800. background: #ffffff;
  801. }
  802. .caro-grad5 {
  803. background: none;
  804. }
  805. .blur {
  806. -webkit-filter: blur(5px);
  807. -ms-filter: blur(5px);
  808. filter: blur(5px);
  809. }
  810. @-webkit-keyframes vidblur {
  811. 0% {-webkit-filter: blur(0px) saturate(0) hue-rotate(0deg);}
  812. 100% {-webkit-filter: blur(4px) saturate(2) hue-rotate(100deg);}
  813. }
  814. @-webkit-keyframes vidunblur {
  815. 0% {-webkit-filter: blur(4px) saturate(2) hue-rotate(100deg);;}
  816. 100% {-webkit-filter: blur(0px) saturate(0) hue-rotate(0deg);}
  817. }
  818. #tv.blur {
  819. -webkit-animation: vidblur 4s;
  820. animation: vidblur 4s;
  821. }
  822. #tv.unblur {
  823. -webkit-animation: vidunblur 4s;
  824. animation: vidunblur 4s;
  825. }
  826. .about {
  827. padding: 20px 0 50px;
  828. }
  829. table.icons tbody > tr {
  830. margin: 0px;
  831. padding: 0px;
  832. }
  833. table.icons tbody > tr > td {
  834. border:none;
  835. padding: 0px;
  836. }
  837. @media (min-width: 768px) {
  838. }
  839. form .actions button{
  840. margin: 20px 0;
  841. }
  842. .updates {
  843. background: rgba(237, 237, 237, 0.85);
  844. box-shadow: 0 0 25px rgba(0, 0, 0, .9);
  845. border-radius: 10px;
  846. padding: 0px 0 20px;
  847. display: none !important;
  848. }
  849. .updates a {
  850. color: #333;
  851. }
  852. .updates h5 {
  853. margin: 0;
  854. color: #999;
  855. }
  856. article.home {
  857. border-radius: 5px;
  858. }
  859. /*============================================
  860. Studio
  861. ==============================================*/
  862. .studio-tools{
  863. border-left: 1px solid #cecece;
  864. margin: 28px 0px;
  865. padding: 0 10px;
  866. }
  867. .studio-subnav {
  868. margin: 28px 0px;
  869. padding: 10px;
  870. }
  871. /* tighter line spacing between the studio tabs */
  872. .studio-subnav .list-group-item {
  873. margin-top: 0;
  874. padding-top: .1rem;
  875. padding-bottom: .1rem;
  876. line-height: 1.35;
  877. }
  878. /* Card behind the below-slider section (tabs + tab content) — the other pages'
  879. dadada card, with a square top so it stays snug under the slider. */
  880. .studio-lower {
  881. background: #dadada;
  882. border-radius: 0 0 6px 6px;
  883. padding-bottom: 2rem;
  884. padding-left: 2.5rem; /* inset the subnav so more of the dadada card shows on the left */
  885. }
  886. /* Subnav column background: rounded on the bottom only so its square top stays
  887. snug against the hero slider above; padding-bottom gives the Projects button room. */
  888. .studio-subnav-col {
  889. border-radius: 0 0 6px 6px;
  890. padding-bottom: 1.5rem;
  891. }
  892. /* Projects page button under the tabs — light, to contrast with the dark subnav column */
  893. /* Studio tab copy — now full-width (the Tools third column was removed); give it
  894. breathing room all around and a larger type size. */
  895. #studio-tab .tab-pane .entry-content {
  896. padding: 2.5rem;
  897. }
  898. /* Only the Studio tab pulls its content up (the DRAFT alert sits close to the
  899. slider); every other tab keeps the comfortable top padding. */
  900. #studio-tab #studio .entry-content {
  901. padding-top: 1rem;
  902. }
  903. #studio-tab #studio .mt-4 {
  904. margin-top: 0 !important;
  905. }
  906. #studio-tab .tab-pane .entry-content h4 {
  907. font-size: 1.3rem !important; /* beat the .fs-5 !important utility on the copy */
  908. line-height: 1.6;
  909. }
  910. .studio-subnav a {
  911. color: #000;
  912. text-decoration: none;
  913. }
  914. .studio-subnav li.active a {
  915. color: #FF0000;
  916. text-decoration: none;
  917. border: none;
  918. }
  919. .studio-subnav a:hover {
  920. color: #FF0000;
  921. text-decoration: none;
  922. border: none;
  923. }
  924. #studio-tab h4 {
  925. line-height: 24px;
  926. }
  927. article.studio {
  928. background: #fff;
  929. padding: 14px 15px 10px; /* top padding = a little space beneath the featured image */
  930. margin:0 0 20px;
  931. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  932. }
  933. .studio-thumbnail {
  934. max-height:180px;
  935. overflow:hidden;
  936. }
  937. img.studio-thumb {
  938. box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  939. -webkit-filter: saturate(0) opacity(0.6);
  940. filter: saturate(0) opacity(0.6);
  941. -webkit-transition: all 1s;
  942. transition: all 1s;
  943. }
  944. img.studio-thumb:hover {
  945. -webkit-filter: saturate(1) opacity(1);
  946. filter: saturate(1) opacity(1);
  947. }
  948. /* Projects page — same dark-blue body (body.page) + light content card + 1280
  949. width as the desk / block pages. body.projects comes from page_bodyclass(). */
  950. body.projects .container.leader {
  951. width: auto;
  952. max-width: 1280px;
  953. }
  954. body.projects h1 {
  955. color: #fff;
  956. }
  957. .projects-card {
  958. background: #dadada;
  959. padding: 96px;
  960. border-radius: 6px;
  961. }
  962. /* Uniform card height: fix the thumbnail height (crop-to-fill) so every card is the
  963. same total height regardless of the image's aspect ratio; clip any long excerpt. */
  964. .projects-card .studio-thumbnail {
  965. height: 180px;
  966. }
  967. .projects-card img.studio-thumb {
  968. width: 100%;
  969. height: 100%;
  970. object-fit: cover;
  971. }
  972. .projects-card .studio .entry-content {
  973. overflow: hidden;
  974. }
  975. /*============================================
  976. Art
  977. ==============================================*/
  978. body.art .site-title a {
  979. color: #FFFFFF;
  980. }
  981. /* Art page — dark-theme card treatment to match the rest of the site. */
  982. body.art h3 {
  983. color: #dadada; /* "Art Projects" heading, same as the left-nav copy */
  984. }
  985. body.art .col-lg-3 a {
  986. color: #dadada; /* left-nav copy, same tone as the footer copy */
  987. }
  988. body.art article.studio {
  989. background: #dadada; /* card bg, like the #dadada cards on the other pages */
  990. border-radius: 6px; /* small radius */
  991. }
  992. /* Docusaurus-style "DRAFT" admonition — matches the danger admonition on /til
  993. (bg #ffebec, #4b1113 text/flame icon, #e13238 thick left border). */
  994. .dw-admonition {
  995. margin: 0 0 1.75rem;
  996. padding: 1rem 1.25rem;
  997. text-align: left;
  998. background-color: var(--wp--preset--color--link, #67000a); /* same red as the search button */
  999. color: #fff;
  1000. border: 1px solid var(--wp--preset--color--link, #67000a);
  1001. border-left: 6px solid #e13238; /* lighter-red side sliver, like the TIL admonition */
  1002. border-radius: 6px;
  1003. }
  1004. .dw-admonition-heading {
  1005. display: flex;
  1006. align-items: center;
  1007. margin-bottom: .3rem;
  1008. font-family: 'Inter', sans-serif;
  1009. font-weight: 700;
  1010. line-height: 1.25;
  1011. text-transform: uppercase;
  1012. }
  1013. .dw-admonition-icon {
  1014. display: inline-flex;
  1015. margin-right: .4em;
  1016. }
  1017. .dw-admonition-icon svg {
  1018. width: 1.5em;
  1019. height: 1.5em;
  1020. fill: #fff;
  1021. }
  1022. .dw-admonition-content p {
  1023. margin: 0;
  1024. line-height: 1.5;
  1025. }
  1026. .art a {
  1027. color: #2F3446;
  1028. }
  1029. .art a:hover {
  1030. color: #cecece;
  1031. text-decoration: none;
  1032. }
  1033. .art a:active {
  1034. color: #FFFFFF;
  1035. text-decoration: none;
  1036. }
  1037. .art-image {
  1038. border: 10px solid #FFFFFF;
  1039. max-height: 800px;
  1040. margin: auto;
  1041. }
  1042. .art-gallery .controls {
  1043. position: relative;
  1044. bottom: 0;
  1045. }
  1046. .art-gallery .prev-next {
  1047. margin: 10px 0 10px;
  1048. }
  1049. .studio .entry-content {
  1050. height: 120px;
  1051. }
  1052. /*============================================
  1053. Now
  1054. ==============================================*/
  1055. .desk ul.now-doing li{
  1056. color: #4e4e4e;
  1057. line-height: 1.4em;
  1058. margin: 0 0 5px 0;
  1059. }
  1060. /*============================================
  1061. Desk
  1062. ==============================================*/
  1063. /* Desk content card — light card (1in APA-style padding) over the dark body.page bg,
  1064. matching the block pages' .wp-block-group.entry-content. body.desk .container.leader
  1065. sets the 1280 width (see above). */
  1066. body.desk .entry-content {
  1067. background:#dadada;
  1068. padding:96px;
  1069. border-radius:6px;
  1070. }
  1071. .desk li {
  1072. color: #777
  1073. }
  1074. /* Desk third column (Recently Edited / Bookmarks / Year / Topics / Tags): a clear
  1075. line of space between each section. Year/Topics/Tags render inline (their links are
  1076. direct children of ul.tags), at the same font size as the rest of the page. */
  1077. .desk-meta {
  1078. border-left: 0; /* right-hand sidebar — no divider on its left edge */
  1079. }
  1080. .desk-meta > ul {
  1081. margin-bottom: 1.25rem;
  1082. }
  1083. .desk-meta > ul:last-child {
  1084. margin-bottom: 0;
  1085. }
  1086. /* Desk actions row: search field inline with the Scroll / Archive buttons. The
  1087. hand-rolled .input-group is missing the child-flex rule that keeps the field and
  1088. submit button on one line, so scope that behaviour (+ joined border radii) here. */
  1089. .desk-actions .input-group {
  1090. flex-wrap: nowrap;
  1091. }
  1092. .desk-actions .input-group .form-control {
  1093. flex: 1 1 auto;
  1094. width: 1%;
  1095. min-width: 0;
  1096. margin: 0; /* cancel the .entry-content input 20px bottom margin that stretched the input-group (and the button) */
  1097. border-top-right-radius: 0;
  1098. border-bottom-right-radius: 0;
  1099. }
  1100. .desk-actions .input-group .btn {
  1101. display: flex;
  1102. align-items: center;
  1103. justify-content: center;
  1104. border-top-left-radius: 0;
  1105. border-bottom-left-radius: 0;
  1106. }
  1107. /*============================================
  1108. Music
  1109. ==============================================*/
  1110. .albums {
  1111. position: relative;
  1112. display: flex;
  1113. flex-wrap: wrap;
  1114. gap: 6px;
  1115. }
  1116. .albums:after {
  1117. content: "";
  1118. display: table;
  1119. clear: both;
  1120. }
  1121. .album {
  1122. width: 150px;
  1123. height: auto;
  1124. position: relative;
  1125. font-size: 12px;
  1126. -webkit-transition: -webkit-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1127. -moz-transition: -moz-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1128. -o-transition: -o-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1129. transition: transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1130. -webkit-perspective: 600px;
  1131. perspective: 600px;
  1132. }
  1133. .album img {
  1134. width: 100%;
  1135. aspect-ratio: 1 / 1;
  1136. object-fit: cover;
  1137. display: block;
  1138. }
  1139. .album h1, .album h2, .album h3 {
  1140. font-size: 13px;
  1141. line-height: 15px;
  1142. }
  1143. .album .front, .album .back {
  1144. float: none;
  1145. width: 100%;
  1146. height: auto;
  1147. -webkit-transform-style: preserve-3d;
  1148. transform-style: preserve-3d;
  1149. -webkit-transition: -webkit-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1150. -moz-transition: -moz-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1151. -o-transition: -o-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1152. transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1153. }
  1154. .album .front {
  1155. z-index: 1;
  1156. -webkit-transform: rotateY(0deg);
  1157. -moz-transform: rotateY(0deg);
  1158. -ms-transform: rotateY(0deg);
  1159. -o-transform: rotateY(0deg);
  1160. transform: rotateY(0deg);
  1161. }
  1162. .album .front .alpha {
  1163. -webkit-transition: opacity 0.4s ease-in-out;
  1164. -moz-transition: opacity 0.4s ease-in-out;
  1165. -o-transition: opacity 0.4s ease-in-out;
  1166. transition: opacity 0.4s ease-in-out;
  1167. display: block;
  1168. content: '';
  1169. height: 100%;
  1170. width: 100%;
  1171. position: absolute;
  1172. top: 0;
  1173. left: 0;
  1174. background: rgba(255, 255, 255, 0.85);
  1175. opacity: 0;
  1176. }
  1177. .album .back {
  1178. position: absolute;
  1179. top: 0;
  1180. left: 0;
  1181. z-index: 0;
  1182. text-align: center;
  1183. font-family: sans-serif;
  1184. padding: 10px;
  1185. opacity: 0;
  1186. -webkit-box-sizing: border-box;
  1187. -moz-box-sizing: border-box;
  1188. box-sizing: border-box;
  1189. -webkit-backface-visibility: hidden;
  1190. backface-visibility: hidden;
  1191. -webkit-transform: rotateY(-180deg);
  1192. -moz-transform: rotateY(-180deg);
  1193. -ms-transform: rotateY(-180deg);
  1194. -o-transform: rotateY(-180deg);
  1195. transform: rotateY(-180deg);
  1196. }
  1197. .album.flip {
  1198. -webkit-transform: scale(1.1, 1.1);
  1199. -moz-transform: scale(1.1, 1.1);
  1200. -ms-transform: scale(1.1, 1.1);
  1201. -o-transform: scale(1.1, 1.1);
  1202. transform: scale(1.1, 1.1);
  1203. z-index: 10;
  1204. }
  1205. .album.flip .front {
  1206. -webkit-transform: rotateY(180deg);
  1207. -moz-transform: rotateY(180deg);
  1208. -ms-transform: rotateY(180deg);
  1209. -o-transform: rotateY(180deg);
  1210. transform: rotateY(180deg);
  1211. }
  1212. .album.flip .front .alpha {
  1213. opacity: 1;
  1214. }
  1215. .album.flip .back {
  1216. z-index: 2;
  1217. opacity: 1;
  1218. -webkit-transform: rotateY(0deg);
  1219. -moz-transform: rotateY(0deg);
  1220. -ms-transform: rotateY(0deg);
  1221. -o-transform: rotateY(0deg);
  1222. transform: rotateY(0deg);
  1223. }
  1224. .album {
  1225. /* 5 per row, filling the full width — subtract the 4 × 6px flex gaps. */
  1226. width: calc((100% - 24px) / 5);
  1227. -webkit-text-size-adjust: none;
  1228. }
  1229. /* Music + Archive pages — light content card + 1280 leader width + white title over the
  1230. dark body.page bg, consistent with the desk / projects / block pages. */
  1231. body.music .container.leader,
  1232. body.archive .container.leader,
  1233. body.contact .container.leader,
  1234. body.sitemap .container.leader {
  1235. width: auto;
  1236. max-width: 1280px;
  1237. }
  1238. /* Neutralize the legacy single-article shell (white bg + 70/140px padding + 100px top
  1239. margin) so the #dadada card sits directly under the title on the dark body, spanning
  1240. the full leader width — matching desk. */
  1241. body.music article#content,
  1242. body.archive article#content {
  1243. background: transparent;
  1244. margin-top: 0;
  1245. padding: 0 0 3rem;
  1246. }
  1247. .music-heading,
  1248. .archive-heading,
  1249. .contact-heading,
  1250. .sitemap-heading {
  1251. color: #fff;
  1252. font-size: 28px;
  1253. }
  1254. #music.entry-content,
  1255. body.archive .entry-content {
  1256. background: #dadada;
  1257. padding: 96px;
  1258. border-radius: 6px;
  1259. }
  1260. /* Contact page — #content itself is the card (no inner .entry-content wrapper).
  1261. Override the legacy single-article 100px top margin so the card sits under the title. */
  1262. body.contact #content,
  1263. body.sitemap #content {
  1264. background: #dadada;
  1265. padding: 96px;
  1266. border-radius: 6px;
  1267. margin-top: 1.25rem;
  1268. margin-bottom: 3rem;
  1269. }
  1270. /* Search + 404 — block templates get the same dark body + white title-above +
  1271. #dadada card as the classic archive/contact/sitemap pages. (Only single posts
  1272. keep the title inside the card.) */
  1273. body.error404 {
  1274. background: rgba(72,76,87,1);
  1275. }
  1276. body.search main > .wp-block-group,
  1277. body.error404 main > .wp-block-group {
  1278. max-width: 1280px;
  1279. margin: 1.25rem auto 3rem;
  1280. padding-left: 96px;
  1281. padding-right: 96px;
  1282. background: #dadada;
  1283. border-radius: 6px;
  1284. }
  1285. body.search main > .wp-block-query-title,
  1286. body.error404 main > .wp-block-heading {
  1287. color: #fff;
  1288. max-width: 1280px;
  1289. margin: 1.25rem auto 0;
  1290. }
  1291. /* Pagination — classic archives (.page-numbers from dw_paging_nav) + the block
  1292. query pagination (search/archive). Centered, de-Bootstrapped pill links. */
  1293. .pagination,
  1294. .wp-block-query-pagination {
  1295. display: flex;
  1296. flex-wrap: wrap;
  1297. justify-content: center;
  1298. align-items: center;
  1299. gap: .4rem;
  1300. margin: 2.5rem 0 0;
  1301. padding: 0;
  1302. list-style: none;
  1303. }
  1304. .pagination .page-numbers,
  1305. .wp-block-query-pagination a {
  1306. display: inline-flex;
  1307. align-items: center;
  1308. justify-content: center;
  1309. min-width: 2.1rem;
  1310. height: 2.1rem;
  1311. padding: 0 .55rem;
  1312. border-radius: 4px;
  1313. color: #484c57;
  1314. text-decoration: none;
  1315. line-height: 1;
  1316. }
  1317. .pagination .page-numbers.current,
  1318. .wp-block-query-pagination .page-numbers.current {
  1319. background: #484c57;
  1320. color: #fff;
  1321. }
  1322. .pagination a.page-numbers:hover,
  1323. .wp-block-query-pagination a:hover {
  1324. background: rgba(72, 76, 87, .12);
  1325. }
  1326. /* Block query pagination (Feed/Posts page, search): override the block's
  1327. space-between layout + text prev/next so it centers with ← → like the
  1328. classic dw_paging_nav pagination on the archives. */
  1329. nav.wp-block-query-pagination {
  1330. justify-content: center;
  1331. gap: .4rem;
  1332. }
  1333. .wp-block-query-pagination-numbers {
  1334. display: flex;
  1335. align-items: center;
  1336. gap: .4rem;
  1337. }
  1338. .wp-block-query-pagination-previous,
  1339. .wp-block-query-pagination-next {
  1340. font-size: 0;
  1341. }
  1342. .wp-block-query-pagination-previous::before {
  1343. content: "\2190";
  1344. font-size: 1rem;
  1345. }
  1346. .wp-block-query-pagination-next::after {
  1347. content: "\2192";
  1348. font-size: 1rem;
  1349. }
  1350. /* "Daveo Radio" CTA — playback now lives on /radio, so the Music page links there. */
  1351. .daveo-radio-btn {
  1352. display: inline-block;
  1353. background: #484c57;
  1354. color: #fff;
  1355. padding: 0.7rem 1.5rem;
  1356. border-radius: 6px;
  1357. font-size: 1.05rem;
  1358. line-height: 1.2;
  1359. text-decoration: none;
  1360. white-space: nowrap;
  1361. transition: background 0.2s ease;
  1362. }
  1363. .daveo-radio-btn:hover,
  1364. .daveo-radio-btn:focus {
  1365. background: #25c2a0;
  1366. color: #fff;
  1367. }
  1368. .daveo-radio-btn .dw-icon {
  1369. width: 1em;
  1370. height: 1em;
  1371. fill: currentColor;
  1372. vertical-align: -0.125em;
  1373. margin-right: 0.4rem;
  1374. }
  1375. #music li.list-group-item {
  1376. padding: 5px 15px;
  1377. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  1378. font-size: 12px;
  1379. }
  1380. #music.entry-content ul {
  1381. margin:0 0 24px;
  1382. }
  1383. @media screen and (max-width: 768px) {
  1384. .album h1, .album h2, .album h3 {
  1385. font-size: 13px;
  1386. line-height: 15px;
  1387. }
  1388. .album {
  1389. width: 25%;
  1390. }
  1391. }
  1392. @media screen and (min-width: 992px) {
  1393. .album h1, .album h2, .album h3 {
  1394. font-size: 15px;
  1395. line-height: 17px;
  1396. }
  1397. }
  1398. div#player{
  1399. width: 100%;
  1400. color: #555555;
  1401. font-family: 'PT Sans', sans-serif;
  1402. font-weight: 700;
  1403. font-size: 12px;
  1404. }
  1405. #song-information{
  1406. text-align: left;
  1407. margin: 0 0 10px;
  1408. }
  1409. #controls{
  1410. float: left;
  1411. }
  1412. #amplitude-volume-slider{
  1413. width: 90%;
  1414. float: right;
  1415. }
  1416. #amplitude-play-pause{
  1417. width: 15px;
  1418. height: 17px;
  1419. margin: 0 5px 0 0;
  1420. cursor: pointer;
  1421. float: right;
  1422. }
  1423. #amplitude-current-time{
  1424. font-family: 'PT Sans', sans-serif;
  1425. font-size: 14px;
  1426. font-weight: 400;
  1427. }
  1428. .amplitude-paused{
  1429. background-image: url('img/small-gray-play.png');
  1430. background-repeat: no-repeat;
  1431. }
  1432. .amplitude-playing{
  1433. background-image: url('img/small-gray-pause.png');
  1434. background-repeat: no-repeat;
  1435. }
  1436. #amplitude-now-playing-name{
  1437. }
  1438. #amplitude-now-playing-listeners{
  1439. }
  1440. #amplitude-now-playing-bitrate{
  1441. }
  1442. /*============================================
  1443. Anatlyics
  1444. ==============================================*/
  1445. .widget {
  1446. background:#000 !important;
  1447. }
  1448. .map {
  1449. height:500px;
  1450. }
  1451. /*============================================
  1452. ==============================================
  1453. General Content
  1454. ==============================================
  1455. ==============================================*/
  1456. .screen-reader {
  1457. text-indent: -10000px;
  1458. top:auto;
  1459. width:1px;
  1460. height:1px;
  1461. overflow:hidden;
  1462. }
  1463. .divider {
  1464. border-bottom: 1px solid #cecece;
  1465. width:100%;
  1466. margin: 30px 0 30px;
  1467. }
  1468. #content {
  1469. margin-bottom: 36px;
  1470. margin-top: 100px;
  1471. }
  1472. #content,
  1473. #content input,
  1474. #content textarea {
  1475. color: #111;
  1476. }
  1477. #content p,
  1478. #content ul,
  1479. #content ol,
  1480. #content dd,
  1481. #content pre,
  1482. #content hr {
  1483. margin-bottom: 24px;
  1484. }
  1485. #content ul ul,
  1486. #content ol ol,
  1487. #content ul ol,
  1488. #content ol ul {
  1489. margin-bottom: 0;
  1490. }
  1491. #content pre,
  1492. #content kbd,
  1493. #content tt,
  1494. #content var {
  1495. font-size: 15px;
  1496. line-height: 21px;
  1497. }
  1498. #content code {
  1499. font-size: 13px;
  1500. }
  1501. #content dt,
  1502. #content th {
  1503. color: #000;
  1504. }
  1505. #content h1,
  1506. #content h2,
  1507. #content h3,
  1508. #content h4,
  1509. #content h5,
  1510. #content h6 {
  1511. color: #000;
  1512. line-height: 1.5em;
  1513. margin: 0 0 16px 0;
  1514. }
  1515. #content table {
  1516. border: 1px solid #e7e7e7;
  1517. margin: 0 -1px 24px 0;
  1518. text-align: left;
  1519. width: 100%;
  1520. }
  1521. #content tr th,
  1522. #content thead th {
  1523. color: #888;
  1524. font-size: 12px;
  1525. font-weight: bold;
  1526. line-height: 18px;
  1527. padding: 9px 24px;
  1528. }
  1529. #content tr td {
  1530. border-top: 1px solid #e7e7e7;
  1531. padding: 6px 24px;
  1532. }
  1533. #content tr.odd td {
  1534. background: #f2f7fc;
  1535. }
  1536. .hentry {
  1537. margin: 0 0 30px 0;
  1538. }
  1539. .home .sticky {
  1540. background: #f2f7fc;
  1541. border-top: 4px solid #000;
  1542. margin-left: -20px;
  1543. margin-right: -20px;
  1544. padding: 18px 20px;
  1545. }
  1546. .single .hentry {
  1547. margin: 0 0 36px 0;
  1548. }
  1549. .page-title {
  1550. color: #000;
  1551. font-size: 14px;
  1552. font-weight: bold;
  1553. margin: 0 0 36px 0;
  1554. }
  1555. .page-title span {
  1556. color: #333;
  1557. font-size: 16px;
  1558. font-style: italic;
  1559. font-weight: normal;
  1560. }
  1561. .entry-caption-parent .page-title span {
  1562. color: #777;
  1563. font-size: 12px;
  1564. font-style: italic;
  1565. font-weight: normal;
  1566. }
  1567. .nav-previous span.meta-nav {
  1568. color: #555;
  1569. font-size: 18px;
  1570. font-weight: normal;
  1571. }
  1572. .nav-next span.meta-nav {
  1573. color: #555;
  1574. font-size: 16px;
  1575. font-weight: normal;
  1576. }
  1577. .page-title a:link,
  1578. .page-title a:visited {
  1579. color: #888;
  1580. text-decoration: none;
  1581. }
  1582. .page-title a:active,
  1583. .page-title a:hover {
  1584. color: #2a6496;
  1585. }
  1586. #content .entry-title {
  1587. color: #000;
  1588. font-size: 26px;
  1589. font-weight: bold;
  1590. line-height: 1.3em;
  1591. margin: 20px 0 20px;
  1592. }
  1593. h2.entry-title {
  1594. color: #999;
  1595. }
  1596. .entry-title a:link,
  1597. .entry-title a:visited {
  1598. color: #000;
  1599. text-decoration: none;
  1600. }
  1601. .entry-title a:active,
  1602. .entry-title a:hover {
  1603. color: #2a6496;
  1604. }
  1605. .entry-meta {
  1606. color: #888;
  1607. font-size: 12px;
  1608. }
  1609. .entry-meta abbr,
  1610. .entry-utility abbr {
  1611. border: none;
  1612. }
  1613. .entry-meta abbr:hover,
  1614. .entry-utility abbr:hover {
  1615. border-bottom: 1px dotted #666;
  1616. }
  1617. .entry-content,
  1618. .entry-summary {
  1619. clear: both;
  1620. }
  1621. /* Break long URLs / unbroken strings so they can't force horizontal scroll on
  1622. phones (block pages don't inherit the .container word-wrap). */
  1623. .entry-content,
  1624. .entry-summary,
  1625. #content {
  1626. overflow-wrap: break-word;
  1627. }
  1628. .entry-content p {
  1629. font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
  1630. }
  1631. /* Block page content (templates/page.html) — light card over the dark page bg.
  1632. Scoped to the group wrapper so it doesn't double up with the nested
  1633. .wp-block-post-content.entry-content. */
  1634. .wp-block-group.entry-content {
  1635. background: #dadada;
  1636. padding: 96px; /* 1in APA-style margins on all sides (96px = 1in) */
  1637. border-radius: 6px;
  1638. }
  1639. /* Mobile: the 96px (1in) card padding leaves almost no content column on a phone
  1640. (~150px on a 375px viewport), which read as an "abnormally narrow" content area.
  1641. Drop every content card to 1.5rem below 768px. Covers the classic cards
  1642. (projects/desk/music/archive/contact/sitemap) and the block cards
  1643. (page/single .wp-block-group.entry-content + search/404). */
  1644. @media (max-width: 767.98px) {
  1645. .projects-card,
  1646. body.desk .entry-content,
  1647. #music.entry-content,
  1648. body.archive .entry-content,
  1649. body.contact #content,
  1650. body.sitemap #content,
  1651. .wp-block-group.entry-content {
  1652. padding: 1.5rem;
  1653. }
  1654. body.search main > .wp-block-group,
  1655. body.error404 main > .wp-block-group {
  1656. padding-left: 1.5rem;
  1657. padding-right: 1.5rem;
  1658. }
  1659. /* .leader zeroes horizontal padding (cards span the full centered width on
  1660. desktop). On a phone that pins cards to the screen edge and lets bare .row
  1661. negative margins (-0.75rem) bleed past the viewport → horizontal scroll.
  1662. Restore 15px gutters on mobile; the dark body then frames the card as it
  1663. does on desktop. */
  1664. .container.leader {
  1665. padding-left: 15px;
  1666. padding-right: 15px;
  1667. }
  1668. }
  1669. /* Block templates (search / 404 / page.html): the navbar's site-title is
  1670. float:right, so it collapses the header and block <main> content would ride up
  1671. next to it. Clear the header the way the classic .container pages do, so every
  1672. page has the same top spacing. */
  1673. main.wp-block-group {
  1674. padding-top: 73px;
  1675. }
  1676. /* Block default pages (page.html): the page title sits above the card — white,
  1677. on the dark body.page bg — matching the archive/search/404 pages. */
  1678. body.page main > .wp-block-post-title {
  1679. color: #fff;
  1680. margin-bottom: 1.25rem;
  1681. }
  1682. .signature {
  1683. float: right;
  1684. margin: 10px 150px 40px 0px;
  1685. }
  1686. span.author {
  1687. display:none;
  1688. }
  1689. #inside h3 {
  1690. font: 16px "Courier New", Courier, mono;
  1691. line-height: 10px;
  1692. margin: 0 0 10px 0;
  1693. }
  1694. #inside p {
  1695. margin: 0 0 10px 0;
  1696. line-height: 20px;
  1697. }
  1698. #content .entry-summary p:last-child {
  1699. margin-bottom: 12px;
  1700. }
  1701. .entry-content fieldset {
  1702. margin: 0 0 24px 0;
  1703. padding: 24px;
  1704. }
  1705. .entry-content fieldset legend {
  1706. background: #fff;
  1707. color: #000;
  1708. font-weight: bold;
  1709. padding: 0 24px;
  1710. }
  1711. .entry-content input {
  1712. margin: 0 0 20px 0;
  1713. }
  1714. .entry-content input.file,
  1715. .entry-content input.button {
  1716. margin-right: 24px;
  1717. }
  1718. .entry-content label {
  1719. color: #888;
  1720. font-size: 12px;
  1721. }
  1722. .entry-content select {
  1723. margin: 0 0 24px 0;
  1724. }
  1725. .entry-content sup,
  1726. .entry-content sub {
  1727. font-size: 10px;
  1728. }
  1729. .entry-content blockquote {
  1730. border-left:none;
  1731. font-style:italic;
  1732. margin: 0 0px 20px;
  1733. color:#333;
  1734. background:#eeeeeec7;
  1735. padding:20px;
  1736. }
  1737. blockquote p {
  1738. margin: 0 0 12px !important;
  1739. }
  1740. .wp-block-image figcaption {
  1741. display: block !important;
  1742. }
  1743. .entry-content blockquote cite {
  1744. text-align:right;
  1745. margin-bottom:0;
  1746. }
  1747. .entry-content blockquote cite p {
  1748. text-align:right;
  1749. margin-bottom:0 !important;
  1750. }
  1751. .entry-content blockquote.left {
  1752. float: left;
  1753. margin-left: 0;
  1754. margin-right: 24px;
  1755. text-align: right;
  1756. width: 33%;
  1757. }
  1758. .entry-content blockquote.right {
  1759. float: right;
  1760. margin-left: 24px;
  1761. margin-right: 0;
  1762. text-align: left;
  1763. width: 33%;
  1764. }
  1765. body.page .edit-link {
  1766. clear: both;
  1767. display: block;
  1768. }
  1769. .entry-meta a,
  1770. .entry-utility a {
  1771. color: #888;
  1772. }
  1773. .entry-meta a:hover,
  1774. .entry-utility a:hover {
  1775. color: #ff4b33;
  1776. }
  1777. #content .video-player {
  1778. padding: 0;
  1779. }
  1780. .date {
  1781. float: right;
  1782. margin: 0px 0 20px 50px;
  1783. color: #777;
  1784. font: 14px/18px "Courier New", Courier, mono;
  1785. }
  1786. #content ul li li {
  1787. padding: 0 0 0 20px;
  1788. }
  1789. .list-group-horizontal .list-group-item {
  1790. display: inline-block;
  1791. }
  1792. .list-group-horizontal .list-group-item {
  1793. margin-bottom: 0;
  1794. margin-left:-2px;
  1795. margin-right: 0;
  1796. }
  1797. .list-group-horizontal .list-group-item:first-child {
  1798. border-top-right-radius:0;
  1799. border-bottom-left-radius:4px;
  1800. }
  1801. .list-group-horizontal .list-group-item:last-child {
  1802. border-top-right-radius:4px;
  1803. border-bottom-left-radius:0;
  1804. }
  1805. .archive-page {
  1806. background:#fff;
  1807. box-shadow: 0 0 5px rgba(0,0,0,.1);
  1808. padding: 70px 100px 140px;
  1809. }
  1810. .single-card .entry-title {
  1811. margin-bottom:5px !important;
  1812. }
  1813. article.studio {
  1814. background: #fff;
  1815. padding: 14px 15px 10px; /* top padding = a little space beneath the featured image */
  1816. margin:0 0 20px;
  1817. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  1818. }
  1819. .archive-thumbnail {
  1820. max-height:180px;
  1821. overflow:hidden;
  1822. }
  1823. img.archive-thumb {
  1824. box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  1825. -webkit-filter: saturate(1) opacity(1);
  1826. filter: saturate(1) opacity(1);
  1827. -webkit-transition: all 1s;
  1828. transition: all 1s;
  1829. }
  1830. img.archive-thumb:hover {
  1831. -webkit-filter: saturate(3) opacity(1) invert(.8);
  1832. filter: saturate(3) opacity(1) invert(.8);
  1833. }
  1834. /*============================================
  1835. Meta
  1836. ==============================================*/
  1837. .meta {
  1838. font-size: 11px;
  1839. }
  1840. .categories-fb {
  1841. text-align: right;
  1842. }
  1843. span.fb {
  1844. width: 16px;
  1845. height: 16px;
  1846. margin-left: 5px;
  1847. padding: 3px 4px 2px 5px;
  1848. background-image: url(img/fb1.png) ;
  1849. background-position: 0 16px;
  1850. position: relative;
  1851. -webkit-transition: all ease 0.3s;
  1852. -moz-transition: all ease 0.3s;
  1853. -o-transition: all ease 0.3s;
  1854. transition: all ease 0.3s;
  1855. }
  1856. span.fb:hover {
  1857. background-position: 0 0;
  1858. }
  1859. /*============================================
  1860. Comments
  1861. ==============================================*/
  1862. .commentbubble {
  1863. font-family:"CM Type";
  1864. font-size: 13px;
  1865. color: #777;
  1866. margin: 0px 15px 0 0;
  1867. }
  1868. .comment {
  1869. padding: 10px;
  1870. }
  1871. .comments-area {
  1872. background: rgba(242,242,242,.7);
  1873. padding: 15px;
  1874. margin: 60px 0 0 0;
  1875. }
  1876. #content .comments-area p {
  1877. margin: 0 0 8px;
  1878. font-size: 13px;
  1879. }
  1880. #content .comments-area .reply {
  1881. margin: 5px 8px 0px;
  1882. padding: 2px 9px;
  1883. background: rgba(242,242,242,.5);
  1884. font-size: 11px;
  1885. }
  1886. .comments-title {
  1887. margin-bottom: 48px;
  1888. font-size: 16px;
  1889. line-height: 1.5;
  1890. font-weight: normal;
  1891. }
  1892. .comments-area ul {
  1893. margin: 0px 0px;
  1894. list-style: none;
  1895. }
  1896. .comments-area h3 {
  1897. margin: 0 0 0;
  1898. }
  1899. .comments-meta {
  1900. font-size: 10px;
  1901. }
  1902. .comments-area article {
  1903. margin: 24px 0;
  1904. }
  1905. .comments-area article header {
  1906. margin: 0 0 48px;
  1907. overflow: hidden;
  1908. position: relative;
  1909. }
  1910. .comments-area article header img {
  1911. float: left;
  1912. padding: 0;
  1913. line-height: 0;
  1914. }
  1915. .comments-area article header cite,
  1916. .comments-area article header time {
  1917. display: block;
  1918. margin-left: 85px;
  1919. }
  1920. .comments-area article header cite {
  1921. font-style: normal;
  1922. font-size: 15px;
  1923. }
  1924. .comments-area cite b {
  1925. font-weight: normal;
  1926. }
  1927. .comments-area article header time {
  1928. text-decoration: none;
  1929. font-size: 12px;
  1930. color: #5e5e5e;
  1931. }
  1932. .comments-area article header a {
  1933. text-decoration: none;
  1934. color: #5e5e5e;
  1935. }
  1936. .comments-area article header a:hover {
  1937. color: #21759b;
  1938. }
  1939. .comments-area article header cite a {
  1940. color: #444;
  1941. }
  1942. .comments-area article header cite a:hover {
  1943. text-decoration: underline;
  1944. }
  1945. .commentlist .pingback {
  1946. line-height: 1.714285714;
  1947. margin-bottom: 24px;
  1948. }
  1949. li.comment.even {
  1950. background: #fff;
  1951. }
  1952. li.comment.odd {
  1953. background: #f3f3f3;
  1954. }
  1955. li.comment.thread-even {
  1956. background: #f5f5f5;
  1957. }
  1958. li.comment.thread-odd {
  1959. background: #fff;
  1960. }
  1961. .comment-meta {
  1962. font-size: 11px;
  1963. line-height: 12px;
  1964. }
  1965. .comment-meta a {
  1966. color: #777;
  1967. float: right;
  1968. margin-top: -15px;
  1969. }
  1970. /*====== Comment form ======*/
  1971. .required {
  1972. color: red;
  1973. }
  1974. .form-submit {
  1975. display: none;
  1976. }
  1977. .comment-form-author,
  1978. .comment-form-email,
  1979. .comment-form-url {
  1980. width: 50%;
  1981. }
  1982. /*============================================
  1983. Media
  1984. ==============================================*/
  1985. .video-container {
  1986. position: relative;
  1987. padding-bottom: 56.25%;
  1988. padding-top: 30px; height: 0; overflow: hidden;
  1989. }
  1990. .video-container iframe,
  1991. .video-container object,
  1992. .video-container embed {
  1993. position: absolute;
  1994. top: 0;
  1995. left: 0;
  1996. width: 100%;
  1997. height: 100%;
  1998. }
  1999. .category-gallery .size-thumbnail img {
  2000. border: 10px solid #f1f1f1;
  2001. margin-bottom: 0;
  2002. }
  2003. .category-gallery .gallery-thumb {
  2004. float: left;
  2005. margin-right: 20px;
  2006. margin-top: -4px;
  2007. }
  2008. .home #content .category-gallery .entry-utility {
  2009. padding-top: 4px;
  2010. }
  2011. /*===== Attachments =====*/
  2012. .single-attachment .hentry {
  2013. margin: 0px;
  2014. }
  2015. .attachment .entry-content .entry-caption {
  2016. font-size: 140%;
  2017. margin-top: 24px;
  2018. }
  2019. #content .entry-caption-attachment h2.entry-title {
  2020. margin: 0 0 5px;
  2021. font-weight: normal;
  2022. }
  2023. #content .entry-caption-parent p.page-title {
  2024. margin: -30px 0 0 0;
  2025. font: normal 13px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  2026. }
  2027. #content .entry-caption-parent p.page-title a {
  2028. color: #555;
  2029. }
  2030. #content .entry-caption-attachment p {
  2031. font-size: 14px;
  2032. text-indent: 0px;
  2033. line-height: 15px;
  2034. margin-bottom: 0px;
  2035. }
  2036. .attachment .entry-content .nav-previous a:before {
  2037. content: '\2190\00a0';
  2038. }
  2039. .attachment .entry-content .nav-next a:after {
  2040. content: '\00a0\2192';
  2041. }
  2042. /*===== Images ======*/
  2043. img.avatar {
  2044. width: 50px;
  2045. height: 50px;
  2046. -webkit-border-radius: 30px;
  2047. -moz-border-radius: 30px;
  2048. border-radius: 30px;
  2049. }
  2050. img.me {
  2051. height: 70px;
  2052. margin: 0 10px 0 0;
  2053. padding: 0 5px;
  2054. float: left;
  2055. -webkit-border-radius: 50%;
  2056. -moz-border-radius: 50%;
  2057. border-radius: 50%;
  2058. -webkit-filter: grayscale(1);
  2059. filter:grayscale(1);
  2060. }
  2061. .entry-content img {
  2062. max-width: 100%;
  2063. height: auto;
  2064. }
  2065. #content .home img {
  2066. border: 15px solid #000;
  2067. }
  2068. #content .alignleft,
  2069. #content img.alignleft {
  2070. display: inline;
  2071. float: left;
  2072. margin-right: 24px;
  2073. margin-top: 4px;
  2074. }
  2075. #content .alignright,
  2076. #content img.alignright {
  2077. display: inline;
  2078. float: right;
  2079. margin-left: 24px;
  2080. margin-top: 4px;
  2081. }
  2082. #content .aligncenter,
  2083. #content img.aligncenter {
  2084. clear: both;
  2085. margin-left: auto;
  2086. margin-right: auto;
  2087. }
  2088. #content img.alignleft,
  2089. #content img.alignright,
  2090. #content img.aligncenter {
  2091. margin-bottom: 12px;
  2092. }
  2093. #content img.alignfull,
  2094. #content img.alignwide
  2095. {
  2096. max-width: 100vw;
  2097. width: 100vw;
  2098. }
  2099. #content .wp-caption {
  2100. color: #737373;
  2101. line-height: 18px;
  2102. margin-bottom: 20px;
  2103. padding: 4px;
  2104. text-align: center;
  2105. }
  2106. #content .wp-caption img {
  2107. margin: 5px 5px 0;
  2108. }
  2109. #content .wp-caption p.wp-caption-text {
  2110. color: #888;
  2111. font-size: 10px;
  2112. margin: 5px;
  2113. }
  2114. #content .attachment img {
  2115. display: block;
  2116. margin: 0 auto;
  2117. }
  2118. .gallery { margin: 0 auto 18px; }
  2119. .gallery .gallery-item {
  2120. float: left;
  2121. margin-top: 0;
  2122. text-align: center;
  2123. width: 33%;
  2124. }
  2125. .gallery-columns-2 .gallery-item { width: 50%; }
  2126. .gallery-columns-4 .gallery-item { width: 25%; }
  2127. .gallery img {
  2128. box-shadow: 0px 0px 4px #999;
  2129. border: 5px solid #000;
  2130. padding: 8px;
  2131. background: #555;
  2132. }
  2133. .gallery img:hover {
  2134. background: #777;
  2135. }
  2136. .gallery-columns-2 .attachment-medium {
  2137. max-width: 92%;
  2138. height: auto;
  2139. }
  2140. .gallery-columns-4 .attachment-thumbnail {
  2141. max-width: 84%;
  2142. height: auto;
  2143. }
  2144. .gallery .gallery-caption {
  2145. color: #888;
  2146. font-size: 12px;
  2147. margin: 0 0 12px;
  2148. }
  2149. .gallery dl, .gallery dt { margin: 0; }
  2150. .gallery br+br { display: none; }
  2151. /*============================================
  2152. Pagination
  2153. ==============================================*/
  2154. .navigation {
  2155. color: #888;
  2156. font-size: 12px;
  2157. line-height: 18px;
  2158. overflow: hidden;
  2159. clear: both;
  2160. }
  2161. .navigation a:link,
  2162. .navigation a:visited {
  2163. color: #888;
  2164. text-decoration: none;
  2165. }
  2166. .navigation a:active,
  2167. .navigation a:hover {
  2168. color: #ff4b33;
  2169. }
  2170. .nav-previous {
  2171. color: #333;
  2172. font-size: 17px;
  2173. float: left;
  2174. width: 50%;
  2175. margin: 0 0 15px 0;
  2176. }
  2177. .nav-next {
  2178. color: #333;
  2179. font-size: 17px;
  2180. float: right;
  2181. text-align: right;
  2182. width: 50%;
  2183. }
  2184. .paged #nav-above,
  2185. .single #nav-above {
  2186. display: block;
  2187. }
  2188. #nav-below {
  2189. margin: 50px 0 0px;
  2190. padding: 20px 10px 0;
  2191. border-top: 1px solid #cecece;
  2192. }
  2193. /* (legacy pagination block removed 2026-07 — superseded by the flex
  2194. .pagination rules above; that block made prev/next red, 27px, and misaligned) */
  2195. /*============================================
  2196. 404
  2197. ==============================================*/
  2198. .not-search {
  2199. margin: 30px;
  2200. padding: 10px;
  2201. height: 80px;
  2202. zoom: 180%;
  2203. }
  2204. .not-search button {
  2205. line-height: 20px;
  2206. }
  2207. /*===== Structure =====*/
  2208. .a:hover {
  2209. color: #1d8;
  2210. }
  2211. .leader {
  2212. padding: 100px 0 0;
  2213. }
  2214. .dark {
  2215. background: #222;
  2216. }
  2217. .bottom {
  2218. padding-top: 50px;
  2219. }
  2220. .centered {
  2221. float: none;
  2222. margin: 0 auto;
  2223. }
  2224. .border-left {
  2225. border-left: 1px solid #333;
  2226. }
  2227. article#main {
  2228. padding: 0px;
  2229. }
  2230. article#main .entry-content {
  2231. padding: 15px;
  2232. }
  2233. article h2 {
  2234. font-size: 28px;
  2235. }
  2236. article.single {
  2237. background: #fff;
  2238. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  2239. }
  2240. article.blurb {
  2241. background: #fff;
  2242. padding: 10px 15px;
  2243. margin:25px 0;
  2244. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  2245. }
  2246. .post {
  2247. margin-bottom: 40px;
  2248. }
  2249. article p {
  2250. text-indent: 12px;
  2251. }
  2252. article p img {
  2253. text-indent: 0px;
  2254. margin: 15px 0 15px -12px;
  2255. }
  2256. p.nobreak {
  2257. margin: 0 0 10px !important;
  2258. }
  2259. span.quiet {
  2260. display: none;
  2261. }
  2262. span.right {
  2263. float: right;
  2264. }
  2265. .entry-content ul {
  2266. margin: 10px 20px;
  2267. }
  2268. .entry-content ul.sitemap {
  2269. margin: 0;
  2270. }
  2271. .form-row.checkbox {
  2272. font-size: 0.85em;
  2273. }
  2274. /*============================================
  2275. Code - Sunburst Theme
  2276. ==============================================*/
  2277. pre {
  2278. background-color: #000 !important;
  2279. word-wrap: break-word;
  2280. margin: 0 0 20px 0;
  2281. padding: 10px;
  2282. color: #fff !important;
  2283. font-size: 14px;
  2284. }
  2285. pre, code {
  2286. font-family: 'Monaco', courier, monospace;
  2287. }
  2288. pre .comment {
  2289. color: #AEAEAE; font-style: italic;
  2290. }
  2291. pre .constant {
  2292. color: #3387CC;
  2293. }
  2294. pre .storage {
  2295. color: #99CF50;
  2296. }
  2297. pre .string, pre .entity.name.class, pre .comment.docstring {
  2298. color: #65B042;
  2299. }
  2300. pre .string.regexp {
  2301. color: #E9C062;
  2302. }
  2303. pre .string.constant {
  2304. color: #DDF2A4;
  2305. }
  2306. pre .constant.hex-color {
  2307. color: #DD7B3B;
  2308. }
  2309. pre .support, pre .tag.script, pre .function.call {
  2310. color: #dad085;
  2311. }
  2312. pre .support.css-property {
  2313. color: #C5AF75;
  2314. }
  2315. pre .support.tag.style {
  2316. color: #fff;
  2317. }
  2318. pre .keyword, pre .selector {
  2319. color: #E28964;
  2320. }
  2321. pre .keyword.namespace {
  2322. color: #3387CC;
  2323. font-weight: bold;
  2324. }
  2325. pre .inherited-class {
  2326. font-style: italic;
  2327. }
  2328. pre .entity, pre .variable.instance, pre .support.namespace, pre .support.tag, pre .support.tag-name {
  2329. color: #89BDFF;
  2330. }
  2331. pre .entity.name.id {
  2332. color: #8693A5;
  2333. }
  2334. *[data-language="c"] .function.call {
  2335. color: #8DA6CE;
  2336. }
  2337. pre .variable, pre .variable.global {
  2338. color: #3E87E3;
  2339. }
  2340. pre .variable.class {
  2341. }
  2342. .wp-block-video video {
  2343. max-width:100% !important;
  2344. width:100% !important;
  2345. height:auto !important;
  2346. }
  2347. figcaption {
  2348. text-align:right;
  2349. color: #777777;
  2350. font-size:13px;
  2351. }
  2352. .chess-html {
  2353. padding: 0 5px 0 5px;
  2354. }
  2355. p.powerdby {
  2356. display:none;
  2357. }
  2358. .nav {
  2359. display:block;
  2360. }
  2361. .site-title {
  2362. float: right !important;
  2363. }
  2364. .navbar-right {
  2365. float: right !important;
  2366. margin-right: 0px;
  2367. }
  2368. .navbar .container {
  2369. display: block;
  2370. }
  2371. a {
  2372. color:#67000a;
  2373. }
  2374. a:hover {
  2375. color:#1a8;
  2376. }
  2377. .about a {
  2378. color:#ff4557;
  2379. }
  2380. li a {
  2381. 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";
  2382. font-size: .9em;
  2383. }
  2384. ul.bookmarks {
  2385. 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";
  2386. font-size: .9em;
  2387. }
  2388. .entry-title {
  2389. font-weight:600;
  2390. }
  2391. .navbar.visible {
  2392. background: rgba(72, 76, 87, 0.7); /* footer color (#484c57), translucent */
  2393. backdrop-filter: blur(6px);
  2394. }
  2395. .offcanvas {
  2396. background: #2b2e35d7;
  2397. }
  2398. ul.nav .list-group-item a {
  2399. color: #fff;
  2400. font-family: 'Playfair Display', serif;
  2401. font-weight: 700;
  2402. font-size: 1.35rem;
  2403. }
  2404. ul.nav .list-group-item a:hover {
  2405. color: #25c2a0;
  2406. }
  2407. /* floating "magic line": one shared underline that slides between the nav items
  2408. (positioned by js/nav-underline.js). ul is the positioning context. */
  2409. ul.nav.list-group-horizontal,
  2410. ul.nav.studio-subnav {
  2411. position: relative;
  2412. }
  2413. .dw-nav-underline {
  2414. position: absolute;
  2415. top: 0;
  2416. left: 0;
  2417. width: 0;
  2418. height: 2px;
  2419. background: #25c2a0;
  2420. border-radius: 1px;
  2421. opacity: 0;
  2422. pointer-events: none;
  2423. transition: left .4s cubic-bezier(0.785, 0.135, 0.15, 0.86),
  2424. width .4s cubic-bezier(0.785, 0.135, 0.15, 0.86),
  2425. top .4s cubic-bezier(0.785, 0.135, 0.15, 0.86),
  2426. opacity .3s ease;
  2427. }
  2428. @media (prefers-reduced-motion: reduce) {
  2429. .dw-nav-underline {
  2430. transition: opacity .3s ease;
  2431. }
  2432. }
  2433. ul.nav .list-group-item {
  2434. border:none;
  2435. background: none;
  2436. color: #fff;
  2437. }
  2438. ul.nav .list-group-item:first-child {
  2439. border-top-left-radius:0;
  2440. border-bottom-left-radius:0;
  2441. }
  2442. ul.nav .list-group-item:last-child {
  2443. border-top-right-radius:0;
  2444. border-bottom-right-radius:0;
  2445. }
  2446. ul.nav ul li {
  2447. margin-left: 15px;
  2448. }
  2449. figure {
  2450. margin: 1em 0px;
  2451. }
  2452. .wp-block-pullquote {
  2453. font-size: 24px;
  2454. margin: 10px 50px;
  2455. }