style.css 49 KB

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