style.css 50 KB

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