style.css 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922
  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(97, 102, 116, 1);
  39. }
  40. body.page .site-title a {
  41. color:#fff;
  42. }
  43. body.desk {
  44. background-color: #616674;
  45. }
  46. body.desk .site-title a {
  47. color:#fff;
  48. }
  49. body.desk h1#desk {
  50. color:#fff;
  51. font-size:28px;
  52. }
  53. body.single {
  54. background: rgba(72,76,87,1);
  55. }
  56. body.single .site-title a {
  57. color:#fff;
  58. }
  59. body.archive {
  60. background: rgba(72,76,87,1);
  61. }
  62. body.archive .site-title a {
  63. color:#fff;
  64. }
  65. body.search {
  66. background: rgba(72,76,87,1);
  67. }
  68. body.search .site-title a {
  69. color:#fff;
  70. }
  71. body.sitemap {
  72. background-color: #616674;
  73. }
  74. body.sitemap .site-title a {
  75. color:#fff;
  76. }
  77. body.contact {
  78. background-color: #F6F6F6;
  79. }
  80. body.contact .site-title a {
  81. color:#000;
  82. }
  83. @media screen and (max-width: 768px) {
  84. body {
  85. background-color:#fff !important;
  86. }
  87. body.single .site-title a {
  88. color:#000;
  89. }
  90. }
  91. .cookie-notification {
  92. display: none;
  93. padding:30px;
  94. position: fixed;
  95. bottom: 10px;
  96. left: 10px;
  97. background-color: #fff;
  98. opacity: 0.8;
  99. border-radius: 15px;
  100. }
  101. /*============================================
  102. Typography
  103. ==============================================*/
  104. @font-face {
  105. font-family: 'Computer Modern';
  106. src: local("☺"),
  107. url('fonts/cmunrm.woff') format('woff');
  108. font-weight: normal;
  109. font-style: normal;
  110. }
  111. @font-face {
  112. font-family: 'Computer Modern';
  113. src: local("☺"),
  114. url('fonts/cmunbx.woff') format('woff');
  115. font-weight: bold;
  116. font-style: normal;
  117. }
  118. @font-face {
  119. font-family: 'Computer Modern';
  120. src: local("☺"),
  121. url('fonts/cmunsl.woff') format('woff');
  122. font-weight: normal;
  123. font-style: italic;
  124. }
  125. @font-face {
  126. font-family: 'CM Sans';
  127. src: local("☺"),
  128. url('fonts/cmunsx.woff') format('woff');
  129. font-weight: normal;
  130. font-style: normal;
  131. }
  132. @font-face {
  133. font-family: 'CM Concrete';
  134. src: local("☺"),
  135. url('fonts/cmunobx.woff') format('woff');
  136. font-weight: normal;
  137. font-style: normal;
  138. }
  139. @font-face {
  140. font-family: 'CM Type';
  141. src: local("☺"),
  142. url('fonts/cmunobx.woff') format('woff');
  143. font-weight: normal;
  144. font-style: normal;
  145. }
  146. .cm {
  147. font-family: "Computer Modern";
  148. }
  149. .cm-sans {
  150. font-family: "CM Sans";
  151. }
  152. .cm-concrete {
  153. font-family: "CM Concrete";
  154. }
  155. .cm-type {
  156. font-family: "CM Type";
  157. }
  158. .courier {
  159. font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  160. }
  161. .didot {
  162. font-family: Didot, "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman", serif;
  163. }
  164. .georgia {
  165. font-family: Georgia, Times, "Times New Roman", serif;
  166. }
  167. .helvetica {
  168. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  169. }
  170. * {
  171. -webkit-font-smoothing: antialiased !important;
  172. text-rendering: optimizeLegibility !important;
  173. line-height: 1.42857143;
  174. }
  175. input,button,select,textarea {
  176. font-family: inherit;
  177. font-size: inherit;
  178. line-height: inherit;
  179. }
  180. .firstcharacter {
  181. float: left;
  182. color: #000;
  183. font-size: 58px;
  184. line-height: 34px;
  185. padding-top: 4px;
  186. padding-right: 6px;
  187. padding-left: 0px;
  188. font-family: Georgia;
  189. }
  190. .tight {
  191. margin: 3px 0;
  192. }
  193. .light {
  194. color:#fcfcfc !important;
  195. }
  196. .darken {
  197. color:#333
  198. }
  199. .dim {
  200. color: #737373;
  201. }
  202. .dull {
  203. color: #535353;
  204. }
  205. .right {
  206. text-align: right;
  207. }
  208. a {
  209. text-decoration: none;
  210. }
  211. em {
  212. font-style: italic;
  213. }
  214. i {
  215. font-style: italic;
  216. }
  217. b {
  218. font-weight: bold;
  219. }
  220. .big {
  221. font-size: 29px;
  222. font-weight: bold;
  223. letter-spacing: -1px;
  224. }
  225. .super {
  226. margin: 40px 0 0;
  227. font-size: 43px;
  228. font-weight: bold;
  229. letter-spacing: -2px;
  230. }
  231. .super-duper {
  232. font-size: 60px;
  233. font-weight: bold;
  234. letter-spacing: -2px;
  235. }
  236. h5.contact {
  237. margin: 0 0 5px !important;
  238. }
  239. h4.spread {
  240. line-height: 24px;
  241. }
  242. .conq {
  243. font-family: "aw-conqueror-didot",serif;
  244. font-style: normal;
  245. font-weight: 300;
  246. }
  247. .email a {
  248. color: #777;
  249. }
  250. /*============================================
  251. Grid
  252. ==============================================*/
  253. .container {
  254. padding-right: 15px;
  255. padding-left: 15px;
  256. margin-right: auto;
  257. margin-left: auto;
  258. word-wrap: break-word;
  259. }
  260. @media (max-width: 667px) {
  261. body {
  262. }
  263. .single {
  264. padding: 10px 0px;
  265. background: none !important;
  266. box-shadow: none !important;
  267. }
  268. .archive {
  269. padding: 10px 0px;
  270. }
  271. .super-duper {
  272. font-size: 63px;
  273. }
  274. #caro {
  275. min-height: 400px;
  276. }
  277. #caro #svg-imac {
  278. height: 220px !important;
  279. }
  280. #caro #svg-device {
  281. display: none;
  282. }
  283. #caro #sv {
  284. height: 100px !important;
  285. }
  286. #caro #svg-mac {
  287. height: 150px !important;
  288. }
  289. #brain {
  290. display:none;
  291. }
  292. .entry-content blockquote {
  293. margin: 0 15px 15px !important;
  294. font-size:.5em !important;
  295. padding:10px;
  296. border-radius:10px;
  297. }
  298. }
  299. @media (max-width: 768px) and (min-width: 668px) {
  300. article.single {
  301. padding: 70px 20px 70px;
  302. }
  303. }
  304. @media (min-width: 768px) {
  305. .container {
  306. width: 760px;
  307. }
  308. .site-title {
  309. font-size: 25px;
  310. }
  311. article.single {
  312. padding: 70px 40px 70px;
  313. }
  314. }
  315. @media (min-width: 992px) {
  316. .container {
  317. width: 970px;
  318. }
  319. article.single {
  320. padding: 70px 80px 140px;
  321. }
  322. }
  323. @media (min-width: 1200px) {
  324. .container {
  325. width: 1170px;
  326. }
  327. article.single {
  328. padding: 70px 100px 140px;
  329. }
  330. }
  331. @media (min-width: 1310px) {
  332. .container {
  333. width: 1280px;
  334. max-width: 1280px;
  335. }
  336. }
  337. @media (min-width: 1400px) {
  338. .container {
  339. width: 1380px;
  340. max-width: 1380px;
  341. }
  342. }
  343. @media print {
  344. * {
  345. color: #000 !important;
  346. text-shadow: none !important;
  347. background: transparent !important;
  348. -webkit-box-shadow: none !important;
  349. box-shadow: none !important;
  350. }
  351. }
  352. /*============================================
  353. Loader / Transit
  354. ==============================================*/
  355. #loader {
  356. position: fixed;
  357. width: 100%;
  358. height: 100%;
  359. top: 0;
  360. left: 0;
  361. font-size: 150px;
  362. text-align: center;
  363. vertical-align: middle;
  364. color: #222;
  365. z-index: 200000;
  366. background-color: #222;
  367. }
  368. .loading-animation {
  369. width: 250px;
  370. height: 250px;
  371. position: absolute;
  372. top: 0;
  373. bottom: 0;
  374. right: 0;
  375. left: 0;
  376. margin: auto;
  377. }
  378. .loading-animation svg {
  379. position:absolute;
  380. top:0;
  381. left:0;
  382. -webkit-transform-origin:center center;
  383. -ms-transform-origin:center center;
  384. -o-transform-origin:center center;
  385. transform-origin:center center;
  386. -webkit-transition:all 0.3s;
  387. -o-transition:all 0.3s;
  388. transition:all 0.3s;
  389. -webkit-transform:rotateY(0deg);
  390. -ms-transform:rotateY(0deg);
  391. -o-transform:rotateY(0deg);
  392. transform:rotateY(0deg);
  393. }
  394. .loading-animation path {
  395. fill:none;
  396. stroke:#fff;
  397. stroke-width:2;
  398. -webkit-transition:all .3s;
  399. -o-transition:all .3s;
  400. transition:all .3s;
  401. }
  402. .loading-animation .l1 path {
  403. fill:rgba(242,242,242,.1);
  404. stroke-dasharray:450;
  405. stroke-dashoffset:900;
  406. -webkit-animation:LOADING1 4s linear 0s infinite;
  407. -o-animation:LOADING1 4s linear 0s infinite;
  408. animation:LOADING1 4s linear 0s infinite;
  409. }
  410. .loading-animation .l2 path {
  411. fill:rgba(242,242,242,.1);
  412. stroke-dasharray:340;
  413. stroke-dashoffset:340;
  414. -webkit-animation:LOADING2 3s linear 0s infinite;
  415. -o-animation:LOADING2 3s linear 0s infinite;
  416. animation:LOADING2 3s linear 0s infinite;
  417. }
  418. .loading-animation .l3 path {
  419. fill:none;
  420. stroke-width:1;
  421. stroke-dasharray:33;
  422. stroke-dashoffset:33;
  423. -webkit-animation:LOADING3 2s linear 0s infinite;
  424. -o-animation:LOADING3 2s linear 0s infinite;
  425. animation:LOADING3 2s linear 0s infinite;
  426. }
  427. @-webkit-keyframes LOADING1 {
  428. 0%{stroke-dashoffset:-900;}
  429. 50%{stroke-dashoffset:0;}
  430. 100%{stroke-dashoffset:900;}
  431. }
  432. @-moz-keyframes LOADING1 {
  433. 0%{stroke-dashoffset:-900;}
  434. 50%{stroke-dashoffset:0;}
  435. 100%{stroke-dashoffset:900;}
  436. }
  437. @-o-keyframes LOADING1 {
  438. 0%{stroke-dashoffset:-900;}
  439. 50%{stroke-dashoffset:0;}
  440. 100%{stroke-dashoffset:900;}
  441. }
  442. @keyframes LOADING1 {
  443. 0%{stroke-dashoffset:-900;}
  444. 50%{stroke-dashoffset:0;}
  445. 100%{stroke-dashoffset:900;}
  446. }
  447. @-webkit-keyframes LOADING2 {
  448. 0%{stroke-dashoffset:340;}
  449. 50%{stroke-dashoffset:0;}
  450. 100%{stroke-dashoffset:-340;}
  451. }
  452. @-moz-keyframes LOADING2 {
  453. 0%{stroke-dashoffset:340;}
  454. 50%{stroke-dashoffset:0;}
  455. 100%{stroke-dashoffset:-340;}
  456. }
  457. @-o-keyframes LOADING2 {
  458. 0%{stroke-dashoffset:340;}
  459. 50%{stroke-dashoffset:0;}
  460. 100%{stroke-dashoffset:-340;}
  461. }
  462. @keyframes LOADING2 {
  463. 0%{stroke-dashoffset:340;}
  464. 50%{stroke-dashoffset:0;}
  465. 100%{stroke-dashoffset:-340;}
  466. }
  467. @-webkit-keyframes LOADING3 {
  468. 0%{stroke-dashoffset:-230;}
  469. 50%{stroke-dashoffset:0;}
  470. 100%{stroke-dashoffset:230;}
  471. }
  472. @-moz-keyframes LOADING3 {
  473. 0%{stroke-dashoffset:-230;}
  474. 50%{stroke-dashoffset:0;}
  475. 100%{stroke-dashoffset:230;}
  476. }
  477. @-o-keyframes LOADING3 {
  478. 0%{stroke-dashoffset:-230;}
  479. 50%{stroke-dashoffset:0;}
  480. 100%{stroke-dashoffset:230;}
  481. }
  482. @keyframes LOADING3 {
  483. 0%{stroke-dashoffset:-230;}
  484. 50%{stroke-dashoffset:0;}
  485. 100%{stroke-dashoffset:230;}
  486. }
  487. .svg-wrap .l1 {
  488. -webkit-animation:TURN 3s linear 0s infinite;
  489. -o-animation:TURN 3s linear 0s infinite;
  490. animation:TURN 3s linear 0s infinite;
  491. }
  492. .svg-wrap .l2 {
  493. -webkit-animation:TURN 2s linear 0s infinite;
  494. -o-animation:TURN 2s linear 0s infinite;
  495. animation:TURN 2s linear 0s infinite;
  496. }
  497. .svg-wrap .l3 {
  498. -webkit-animation:TURN 4.5s linear 0s infinite;
  499. -o-animation:TURN 4.5s linear 0s infinite;
  500. animation:TURN 4.5s linear 0s infinite;
  501. }
  502. @-webkit-keyframes TURN {
  503. 0%{-webkit-transform:rotateY(0deg);opacity:1}
  504. 25%{-webkit-transform:rotateY(90deg);opacity:.6}
  505. 50%{-webkit-transform:rotateY(180deg);opacity:1}
  506. 75%{-webkit-transform:rotateY(270deg);opacity:.6}
  507. 100%{-webkit-transform:rotateY(360deg);opacity:1}}
  508. @-webkit-keyframes TURNBACK {
  509. 0%{-webkit-transform:rotateY(360deg);opacity:1}
  510. 25%{-webkit-transform:rotateY(270deg);opacity:.6}
  511. 50%{-webkit-transform:rotateY(180deg);opacity:1}
  512. 75%{-webkit-transform:rotateY(90deg);opacity:.6}
  513. 100%{-webkit-transform:rotateY(0deg);opacity:1}}
  514. .m-scene .scene_element {
  515. -webkit-animation-duration: 0.25s;
  516. animation-duration: 0.25s;
  517. -webkit-transition-timing-function: ease-in;
  518. transition-timing-function: ease-in;
  519. -webkit-animation-fill-mode: both;
  520. animation-fill-mode: both; }
  521. .m-scene .scene_element--fadein {
  522. -webkit-animation-name: fadeIn;
  523. animation-name: fadeIn; }
  524. .m-scene .scene_element--fadeinup {
  525. -webkit-animation-name: fadeInUp;
  526. animation-name: fadeInUp; }
  527. .m-scene .scene_element--fadeinright {
  528. -webkit-animation-name: fadeInRight;
  529. animation-name: fadeInRight; }
  530. .m-scene .scene_element--delayed {
  531. -webkit-animation-delay: 0.25s;
  532. animation-delay: 0.25s; }
  533. .m-scene.is-exiting .scene_element {
  534. -webkit-animation-direction: alternate-reverse;
  535. animation-direction: alternate-reverse; }
  536. .m-scene.is-exiting .scene_element--delayed {
  537. -webkit-animation-delay: 0s;
  538. animation-delay: 0s; }
  539. .m-scene.is-exiting .scene_element--noexiting {
  540. -webkit-animation-direction: alternate-reverse;
  541. animation-direction: alternate-reverse; }
  542. /*============================================
  543. Navbar
  544. ==============================================*/
  545. .navbar {
  546. -webkit-transition: background-color 0.3s;
  547. -moz-transition: background-color 0.3s;
  548. transition: background-color 0.3s;
  549. -webkit-transform: translate3d(0, 0, 0);
  550. -moz-transform: translate3d(0, 0, 0);
  551. -ms-transform: translate3d(0, 0, 0);
  552. -o-transform: translate3d(0, 0, 0);
  553. transform: translate3d(0, 0, 0);
  554. }
  555. .navbar.fixed {
  556. position: fixed;
  557. top: -85px;
  558. -webkit-transition: all .3s ease-in-out;
  559. -moz-transition: all .3s ease-in-out;
  560. transition: all .3s ease-in-out;
  561. }
  562. .navbar.visible {
  563. -webkit-transform: translate3d(0, 100%, 0);
  564. -moz-transform: translate3d(0, 100%, 0);
  565. -ms-transform: translate3d(0, 100%, 0);
  566. -o-transform: translate3d(0, 100%, 0);
  567. transform: translate3d(0, 100%, 0);
  568. background-color: rgba(237, 237, 237, 0.7);
  569. }
  570. #nav {
  571. width: 100%;
  572. }
  573. #nav.affix-top {
  574. width: 100%;
  575. background-color: rgba(237, 237, 237, 0.0);
  576. }
  577. #nav.affix-top {
  578. visibility: visible;
  579. position: absolute;
  580. top:0;
  581. left:0;
  582. height:80px;
  583. -webkit-transition: all .3s ease-in-out;
  584. -moz-transition: all .3s ease-in-out;
  585. transition: all .3s ease-in-out;
  586. }
  587. #nav.affix {
  588. position: fixed;
  589. top: 0;
  590. z-index:10;
  591. -webkit-transition: all .3s ease-in-out;
  592. -moz-transition: all .3s ease-in-out;
  593. transition: all .3s ease-in-out;
  594. }
  595. /*============================================
  596. NavMenu
  597. ==============================================*/
  598. .nav-tabs-bottom {
  599. border-bottom: 0;
  600. border-top: 1px solid #dddddd;
  601. }
  602. .nav-tabs-bottom > li {
  603. margin-bottom: 0;
  604. margin-top: -1px;
  605. }
  606. .nav-tabs-bottom > li > a {
  607. border-radius: 0 0 4px 4px;
  608. }
  609. .nav-tabs-bottom > li > a:hover,
  610. .nav-tabs-bottom > li > a:focus,
  611. .nav-tabs-bottom > li.active > a,
  612. .nav-tabs-bottom > li.active > a:hover,
  613. .nav-tabs-bottom > li.active > a:focus {
  614. border: 1px solid #dddddd;
  615. border-top-color: transparent;
  616. }
  617. .nav-tabs-left {
  618. border-bottom: 0;
  619. border-right: 1px solid #dddddd;
  620. }
  621. .nav-tabs-left > li {
  622. margin-bottom: 0;
  623. margin-right: -1px;
  624. float: none;
  625. }
  626. .nav-tabs-left > li > a {
  627. border-radius: 4px 0 0 4px;
  628. margin-right: 0;
  629. margin-bottom: 2px;
  630. }
  631. .nav-tabs-left > li > a:hover,
  632. .nav-tabs-left > li > a:focus,
  633. .nav-tabs-left > li.active > a,
  634. .nav-tabs-left > li.active > a:hover,
  635. .nav-tabs-left > li.active > a:focus {
  636. border: 1px solid #dddddd;
  637. border-right-color: transparent;
  638. }
  639. .row > .nav-tabs-left {
  640. padding-right: 0;
  641. padding-left: 15px;
  642. margin-right: -1px;
  643. position: relative;
  644. z-index: 1;
  645. }
  646. .row > .nav-tabs-left + .tab-content {
  647. border-left: 1px solid #dddddd;
  648. }
  649. .nav-tabs-right {
  650. border-bottom: 0;
  651. border-left: 1px solid #dddddd;
  652. }
  653. .nav-tabs-right > li {
  654. margin-bottom: 0;
  655. margin-left: -1px;
  656. float: none;
  657. }
  658. .nav-tabs-right > li > a {
  659. border-radius: 0 4px 4px 0;
  660. margin-left: 0;
  661. margin-bottom: 2px;
  662. }
  663. .nav-tabs-right > li > a:hover,
  664. .nav-tabs-right > li > a:focus,
  665. .nav-tabs-right > li.active > a,
  666. .nav-tabs-right > li.active > a:hover,
  667. .nav-tabs-right > li.active > a:focus {
  668. border: 1px solid #dddddd;
  669. border-left-color: transparent;
  670. }
  671. .row > .nav-tabs-right {
  672. padding-left: 0;
  673. padding-right: 15px;
  674. }
  675. .nav-toggle {
  676. padding: 15px 0;
  677. right: 15px;
  678. top: 25px;
  679. cursor: pointer;
  680. position: absolute;
  681. }
  682. .nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  683. cursor: pointer;
  684. border-radius: 1px;
  685. height: 5px;
  686. width: 35px;
  687. background: #333E52;
  688. position: absolute;
  689. display: block;
  690. content: '';
  691. }
  692. .nav-toggle span:before {
  693. top: -10px;
  694. }
  695. .nav-toggle span:after {
  696. bottom: -10px;
  697. }
  698. .nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  699. transition: all 500ms ease-in-out;
  700. }
  701. .nav-toggle.active span {
  702. background-color: transparent;
  703. }
  704. .nav-toggle.active span:before, .nav-toggle.active span:after {
  705. top: 0;
  706. }
  707. .nav-toggle.active span:before {
  708. transform: rotate(45deg);
  709. -webkit-transform: rotate(45deg);
  710. -o-transform: rotate(45deg);
  711. }
  712. .nav-toggle.active span:after {
  713. transform: rotate(-45deg);
  714. -webkit-transform: rotate(-45deg);
  715. -o-transform: rotate(-45deg);
  716. }
  717. .entry-content ol {
  718. padding: 0 25px;
  719. list-style: decimal outside;
  720. }
  721. #archives li {
  722. list-style: none;
  723. margin: 2px 8px;
  724. float: left;
  725. }
  726. .fa {
  727. color: #777;
  728. }
  729. .fa-15x {
  730. font-size: 1.6em !important;
  731. padding: 2px 2px;
  732. }
  733. /*============================================
  734. Header
  735. ==============================================*/
  736. .site-title {
  737. float: right;
  738. padding: 15px 0;
  739. font-family: "Computer Modern";
  740. }
  741. .site-title a {
  742. color: #fff;
  743. text-decoration: none;
  744. border: none;
  745. outline: none;
  746. }
  747. img.dw {
  748. float: right;
  749. margin: 15px 0;
  750. }
  751. #site-description {
  752. clear: right;
  753. float: right;
  754. font-style: italic;
  755. margin: 14px 0 18px 0;
  756. width: 160px;
  757. }
  758. .logo {
  759. margin: 0 auto;
  760. vertical-align: top;
  761. }
  762. .front-nav {
  763. margin: 10px 0 0;
  764. }
  765. /*============================================
  766. Footer
  767. ==============================================*/
  768. .footer {
  769. padding: 90px 0 30px;
  770. }
  771. .footer-home {
  772. padding: 90px 0 50px;
  773. }
  774. .footer a {
  775. color: #777777;
  776. }
  777. .footer a:hover {
  778. color: #FFFFFF;
  779. text-decoration: none;
  780. }
  781. .footer span.fa:hover {
  782. color: #FFFFFF;
  783. text-decoration: none;
  784. }
  785. p.cc {
  786. float: right;
  787. font-size: 14px;
  788. margin: 2px 20px 30px 10px;
  789. }
  790. ul.social {
  791. margin: 0;
  792. }
  793. ul.social li {
  794. float: left;
  795. padding: 0 4px;
  796. }
  797. ul.social li:first-child {
  798. float: left;
  799. padding: 0 4px 0 0;
  800. }
  801. ul.social a.github span:hover {
  802. color: #FFFFFF;
  803. }
  804. ul.social a.twitter span:hover {
  805. color: #00B0ED;
  806. }
  807. ul.social a.gplus span:hover {
  808. color: #DF4A32;
  809. }
  810. ul.social a.facebook span:hover {
  811. color: #3B5998;
  812. }
  813. /*============================================
  814. Intro
  815. ==============================================*/
  816. @keyframes blink {
  817. 0% { opacity: 0; }
  818. 25% { opacity: 1; }
  819. 50% { opacity: 1; }
  820. 100% { opacity: 0; }
  821. }
  822. @-webkit-keyframes blink {
  823. 0% { opacity: 0; }
  824. 25% { opacity: 1; }
  825. 50% { opacity: 1; }
  826. 100% { opacity: 0; }
  827. }
  828. @-ms-keyframes blink {
  829. 0% { opacity: 0; }
  830. 25% { opacity: 1; }
  831. 50% { opacity: 1; }
  832. 100% { opacity: 0; }
  833. }
  834. @-moz-keyframes blink {
  835. 0% { opacity: 0; }
  836. 25% { opacity: 1; }
  837. 50% { opacity: 1; }
  838. 100% { opacity: 0; }
  839. }
  840. .welcome::after {
  841. visibility: visible;
  842. content: '';
  843. background-color:green;
  844. opacity: 0;
  845. display: inline-block;
  846. position: relative;
  847. width: 0.5em;
  848. height: 1em;
  849. top: 5px;
  850. margin-left: 0;
  851. margin-bottom: 2px;
  852. -webkit-animation: blink 1s 20;
  853. -moz-animation: blink 1s 20;
  854. animation: blink 1s 20;
  855. }
  856. .welcome-back-text::after {
  857. visibility: visible;
  858. content: '';
  859. background-color:green;
  860. opacity: 0;
  861. display: inline-block;
  862. position: relative;
  863. width: 0.5em;
  864. height: 1em;
  865. top: 5px;
  866. margin-left: 0;
  867. margin-bottom: 2px;
  868. -webkit-animation: blink 1s 3;
  869. -moz-animation: blink 1s 3;
  870. animation: blink 1s 3;
  871. }
  872. .welcome-back {
  873. min-height: 500px;
  874. padding: 70px 50px 40px;
  875. font-size: 24px;
  876. color: #34F743;
  877. background: transparent url('img/terminal.svg');
  878. background-size: cover;
  879. border-radius: 1px;
  880. }
  881. .terminal-welcome .modal-content {
  882. margin: 0 0 100px;
  883. border: none;
  884. box-shadow:none;
  885. background-color: transparent !important;
  886. }
  887. .terminal {
  888. margin-top:30px;
  889. }
  890. .terminal .modal-content {
  891. margin: 0 0 100px;
  892. border: none;
  893. box-shadow:none;
  894. background-color: transparent !important;
  895. }
  896. [contenteditable] {outline: none;}
  897. .typed-cursor{
  898. display: none;
  899. }
  900. .thermo span.prompt {
  901. color: #389436;
  902. }
  903. .thermo p.input {
  904. line-height: 11px !important;
  905. margin: 0px;
  906. }
  907. .thermo p.response {
  908. line-height: 11px !important;
  909. margin: 0px;
  910. color:#34F743;
  911. }
  912. .thermo span.u {
  913. color: #389436;
  914. }
  915. .thermo span.at {
  916. color: #38BBC6;
  917. }
  918. .thermo span.mee {
  919. color: #389436;
  920. }
  921. .thermo-intro span.prompt {
  922. color: #389436;
  923. }
  924. .thermo-intro p.input {
  925. line-height: 11px !important;
  926. margin: 0px;
  927. }
  928. .thermo-intro p.response {
  929. line-height: 11px !important;
  930. margin: 0px;
  931. color:#34F743;
  932. }
  933. .thermo-intro span.u {
  934. color: #389436;
  935. }
  936. .thermo-intro span.at {
  937. color: #38BBC6;
  938. }
  939. .thermo-intro span.mee {
  940. color: #389436;
  941. }
  942. /*============================================
  943. About / Studio Carousels
  944. ==============================================*/
  945. .carousel-fade .carousel-inner .item {
  946. left: 0 !important;
  947. opacity: 0;
  948. -webkit-transition-property: opacity;
  949. -moz-transition-property: opacity;
  950. -o-transition-property: opacity;
  951. transition-property: opacity;
  952. }
  953. .carousel-fade .carousel-inner .active {
  954. opacity: 1;
  955. }
  956. .carousel-fade .carousel-inner .active.left,
  957. .carousel-fade .carousel-inner .active.right {
  958. left: 0;
  959. opacity: 0;
  960. z-index: 1;
  961. }
  962. .carousel-fade .carousel-inner .next.left,
  963. .carousel-fade .carousel-inner .prev.right {
  964. opacity: 1;
  965. }
  966. .carousel-fade .carousel-control {
  967. z-index: 2;
  968. }
  969. #caro-lead {
  970. min-height: 420px;
  971. }
  972. #caro-lead h2 {
  973. font-size: 27px;
  974. }
  975. #caro-lead .carousel-indicators {
  976. top:550px;
  977. }
  978. #caro {
  979. min-height: 400px;
  980. }
  981. .hide-svg {
  982. visibility: hidden;
  983. }
  984. .fade-svg {
  985. -webkit-animation: fadeOut 1s;
  986. -moz-animation: fadeOut 1s;
  987. -o-animation: fadeOut 1s;
  988. animation: fadeOut 1s;
  989. }
  990. .show-svg {
  991. -webkit-animation: fadeIn 1s;
  992. -moz-animation: fadeIn 1s;
  993. -o-animation: fadeIn 1s;
  994. animation: fadeIn 1s;
  995. }
  996. #caro #svg-imac {
  997. height: 290px;
  998. }
  999. #caro #svg-imac.bg {
  1000. background: transparent url('img/web.gif') no-repeat 28% 15%;
  1001. background-size:95%;
  1002. }
  1003. #caro #svg-device {
  1004. float:right;
  1005. margin-top:-115px;
  1006. height: 190px;
  1007. }
  1008. #caro #sv {
  1009. height: 220px;
  1010. }
  1011. #caro #svg-mac {
  1012. height: 290px;
  1013. }
  1014. #studio-caro {
  1015. -webkit-transition: all 1s ease;
  1016. -moz-transition: all 1s ease;
  1017. -o-transition: all 1s ease;
  1018. transition: all 1s ease;
  1019. }
  1020. #studio-caro .carousel-indicators {
  1021. left: 10%;
  1022. bottom: 0;
  1023. }
  1024. .caro-grad_old {
  1025. background: #5E7A9B;
  1026. background: -webkit-linear-gradient(top, #355069 0, #5e7a9b 100%);
  1027. background: -moz-linear-gradient(top, #355069 0, #5e7a9b 100%);
  1028. background: -o-linear-gradient(top, #355069 0, #5e7a9b 100%);
  1029. background: linear-gradient(top, #355069 0, #5e7a9b 100%);
  1030. }
  1031. .caro-grad {
  1032. background:#404040;
  1033. }
  1034. .caro-grad2 {
  1035. background: #000000;
  1036. }
  1037. .caro-grad3 {
  1038. background: #ffffff;
  1039. }
  1040. .caro-grad5 {
  1041. background: none;
  1042. }
  1043. .darken-carousel-indicators {
  1044. border: 1px solid #000 !important;
  1045. }
  1046. .carousel-indicators .darken-carousel-indicators.active {
  1047. background: #000 !important;
  1048. }
  1049. .bg1 {
  1050. background-size: cover;
  1051. -webkit-background-size: cover;
  1052. -moz-background-size: cover;
  1053. -o-background-size: cover;
  1054. }
  1055. .blur {
  1056. -webkit-filter: blur(5px);
  1057. -ms-filter: blur(5px);
  1058. filter: blur(5px);
  1059. }
  1060. .about-caro {
  1061. height:670px;
  1062. }
  1063. #tv {
  1064. position: fixed;
  1065. left: 0;
  1066. top: 0;
  1067. min-width: 101%;
  1068. width: auto;
  1069. height: auto;
  1070. z-index: -100;
  1071. /*background: url(img/tv.gif) no-repeat;*/
  1072. background: url(img/tv.jpg) no-repeat;
  1073. background-size: cover;
  1074. -webkit-background-size: cover;
  1075. -moz-background-size: cover;
  1076. -o-background-size: cover;
  1077. filter: saturate(0);
  1078. -webkit-filter: saturate(0);
  1079. transform-origin: 50% 50%;
  1080. -webkit-transform-origin: 50% 50%;
  1081. border: none;
  1082. }
  1083. @-webkit-keyframes vidblur {
  1084. 0% {-webkit-filter: blur(0px) saturate(0) hue-rotate(0deg);}
  1085. 100% {-webkit-filter: blur(4px) saturate(2) hue-rotate(100deg);}
  1086. }
  1087. @-webkit-keyframes vidunblur {
  1088. 0% {-webkit-filter: blur(4px) saturate(2) hue-rotate(100deg);;}
  1089. 100% {-webkit-filter: blur(0px) saturate(0) hue-rotate(0deg);}
  1090. }
  1091. #tv.blur {
  1092. -webkit-animation: vidblur 4s;
  1093. animation: vidblur 4s;
  1094. }
  1095. #tv.unblur {
  1096. -webkit-animation: vidunblur 4s;
  1097. animation: vidunblur 4s;
  1098. }
  1099. .wallpaper,
  1100. .wallpaper .wallpaper-container,
  1101. .wallpaper .wallpaper-media {
  1102. -webkit-transition: opacity 0.5s linear !important;
  1103. transition: opacity 0.5s linear !important;
  1104. }
  1105. .wallpaper { overflow: hidden; position: relative; }
  1106. .wallpaper .wallpaper-container { height: 100%; overflow: hidden; position: absolute; top: 0; left:0px; width: 100%; z-index: -1; }
  1107. .wallpaper .wallpaper-media { left: 0; opacity: 0; position: absolute; top: 0; }
  1108. .wallpaper .wallpaper-media.animated {
  1109. -webkit-transition: opacity 0.5s linear !important;
  1110. transition: opacity 0.5s linear !important;
  1111. }
  1112. .wallpaper .wallpaper-media img,
  1113. .wallpaper .wallpaper-media video,
  1114. .wallpaper .wallpaper-media iframe { display: block; height: 100%; width: 100%; }
  1115. .wallpaper .wallpaper-embed.ready:after { content: ''; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 1; }
  1116. .wallpaper .wallpaper-embed.ready iframe { /* pointer-events: none; - safari doesn't like this :/ */ z-index: 0; }
  1117. .wallpaper .wallpaper-media.native { background-position: center; background-size: cover; height: 100%; width: 100%; }
  1118. .wallpaper .wallpaper-media.native img { display: none; }
  1119. .wallpaper .wallpaper-media.fixed { background-position: center; background-attachment: fixed; height: 100%; width: 100%; }
  1120. .wallpaper .wallpaper-media.fixed img { display: none; }
  1121. .touch-carousel {
  1122. position:relative;
  1123. overflow:hidden;
  1124. width:100%;
  1125. -webkit-transform:translate3d(0,0,0) scale3d(1,1,1);
  1126. -webkit-backface-visibility:hidden;
  1127. -webkit-transform-style:preserve-3d;
  1128. -webkit-tap-highlight-color:rgba(0,0,0,0);
  1129. -webkit-touch-callout:none;
  1130. -webkit-user-select:none;
  1131. -moz-user-select:none;
  1132. -ms-user-select:none;
  1133. user-select:none
  1134. }
  1135. .touch-carousel .carousel-inner {
  1136. overflow:hidden;
  1137. -webkit-transform:translate3d(0%,0,0) scale3d(1,1,1);
  1138. -moz-transform:translate3d(0%,0,0) scale3d(1,1,1);
  1139. -ms-transform:translate3d(0%,0,0) scale3d(1,1,1);
  1140. transform:translate3d(0%,0,0) scale3d(1,1,1);
  1141. -webkit-backface-visibility:hidden;
  1142. -webkit-transform-style:preserve-3d;
  1143. -webkit-tap-highlight-color:rgba(0,0,0,0);
  1144. -webkit-touch-callout:none;
  1145. -webkit-user-select:none;
  1146. -moz-user-select:none;
  1147. -ms-user-select:none;
  1148. user-select:none
  1149. }
  1150. .touch-carousel .carousel-inner>.item {
  1151. position:relative;
  1152. float:left;
  1153. display:block;
  1154. -webkit-transition:none;
  1155. -moz-transition:none;
  1156. transition:none;
  1157. -webkit-backface-visibility:hidden;
  1158. -webkit-transform-style:preserve-3d
  1159. }
  1160. .touch-carousel .carousel-inner>.item * {
  1161. -webkit-transition:none;
  1162. -moz-transition:none;transition:none
  1163. }
  1164. .touch-carousel .carousel-inner.animate {
  1165. -webkit-transition:all .3s linear;
  1166. -moz-transition:all .3s linear;
  1167. transition:all .3s linear
  1168. }
  1169. /*============================================
  1170. About
  1171. ==============================================*/
  1172. .big-top {
  1173. height: auto;
  1174. margin: 0 auto;
  1175. width: 100%;
  1176. position: relative;
  1177. box-shadow: 0 0 50px rgba(0,0,0,0.8);
  1178. padding: 100px 0;
  1179. }
  1180. .about {
  1181. padding: 20px 0 50px;
  1182. }
  1183. .where {
  1184. margin: 20px 0 0;
  1185. }
  1186. .icon-grid {
  1187. margin: 28px 0 0;
  1188. }
  1189. table.icons tbody > tr {
  1190. margin: 0px;
  1191. padding: 0px;
  1192. }
  1193. table.icons tbody > tr > td {
  1194. border:none;
  1195. padding: 0px;
  1196. }
  1197. .about-form label strong {
  1198. color: #999;
  1199. }
  1200. .text-field {
  1201. width: 50%;
  1202. float: left;
  1203. display: block;
  1204. -webkit-box-sizing: border-box;
  1205. -moz-box-sizing: border-box;
  1206. box-sizing: border-box;
  1207. position: relative;
  1208. }
  1209. .text-field > strong {
  1210. display: block;
  1211. font-weight: bold;
  1212. color: white;
  1213. font-size: 0.85em;
  1214. margin-top: -3px;
  1215. }
  1216. .text-field > strong > i {
  1217. font-weight: normal;
  1218. font-style: italic;
  1219. font-family: playfair display, serif;
  1220. font-size: 0.9em;
  1221. opacity: 0.8;
  1222. }
  1223. .text-field .req {
  1224. position: relative;
  1225. top: 4px;
  1226. left: 4px;
  1227. color: #1a8;
  1228. opacity: 0.5;
  1229. }
  1230. .text-field [type='email'],
  1231. .text-field [type='text'] {
  1232. -webkit-box-sizing: border-box;
  1233. -moz-box-sizing: border-box;
  1234. box-sizing: border-box;
  1235. -webkit-transition: all 200ms linear;
  1236. transition: all 200ms linear;
  1237. }
  1238. .text-field [type='email']::-webkit-input-placeholder,
  1239. .text-field [type='text']::-webkit-input-placeholder {
  1240. color: rgba(250, 250, 250, 0.2);
  1241. font-weight: normal;
  1242. }
  1243. .text-field [type='email']::-moz-placeholder,
  1244. .text-field [type='text']::-moz-placeholder {
  1245. color: rgba(250, 250, 250, 0.2);
  1246. font-weight: normal;
  1247. }
  1248. .text-field [type='email']:-ms-input-placeholder,
  1249. .text-field [type='text']:-ms-input-placeholder {
  1250. color: rgba(250, 250, 250, 0.2);
  1251. font-weight: normal;
  1252. }
  1253. .text-field [type='email']::placeholder,
  1254. .text-field [type='text']::placeholder {
  1255. color: rgba(250, 250, 250, 0.2);
  1256. font-weight: normal;
  1257. }
  1258. .text-field [type='email'],
  1259. .text-field [type='text'] {
  1260. background: transparent;
  1261. border: 0;
  1262. padding: 5px 0;
  1263. border-bottom: solid 1px rgba(250, 250, 250, 0.2);
  1264. margin: 5px 5px 5px 0;
  1265. color: #1d8;
  1266. font-weight: bold;
  1267. }
  1268. .text-field [type='email']:hover,
  1269. .text-field [type='text']:hover {
  1270. border-bottom-color: rgba(250, 250, 250, 0.5);
  1271. outline: 0;
  1272. }
  1273. .text-field [type='email']:focus,
  1274. .text-field [type='text']:focus {
  1275. color: #1d8;
  1276. border-bottom-color: #1d8;
  1277. outline: 0;
  1278. }
  1279. @media (min-width: 768px) {
  1280. .text-field [type='email'],
  1281. .text-field [type='text'] {
  1282. width: 92%;
  1283. }
  1284. }
  1285. form .actions button{
  1286. margin: 20px 0;
  1287. }
  1288. .posts-front {
  1289. margin: 40px 0;
  1290. padding: 0px 0;
  1291. background: transparent;
  1292. }
  1293. .updates {
  1294. background: rgba(237, 237, 237, 0.85);
  1295. box-shadow: 0 0 25px rgba(0, 0, 0, .9);
  1296. border-radius: 10px;
  1297. padding: 0px 0 20px;
  1298. display: none !important;
  1299. }
  1300. .updates a {
  1301. color: #333;
  1302. }
  1303. .updates h5 {
  1304. margin: 0;
  1305. color: #999;
  1306. }
  1307. article.home {
  1308. border-radius: 5px;
  1309. }
  1310. /*============================================
  1311. Studio
  1312. ==============================================*/
  1313. .studio-tools{
  1314. border-left: 1px solid #cecece;
  1315. margin: 28px 0px;
  1316. padding: 0 10px;
  1317. }
  1318. .studio-subnav {
  1319. margin: 28px 0px;
  1320. padding: 10px;
  1321. }
  1322. .studio-subnav a {
  1323. color: #000;
  1324. text-decoration: none;
  1325. }
  1326. .studio-subnav li.active a {
  1327. color: #FF0000;
  1328. text-decoration: none;
  1329. border: none;
  1330. }
  1331. .studio-subnav li.active .fa {
  1332. color: #FF0000;
  1333. }
  1334. .studio-subnav a:hover {
  1335. color: #FF0000;
  1336. text-decoration: none;
  1337. border: none;
  1338. }
  1339. .studio-subnav .fa {
  1340. color: #000;
  1341. text-decoration: none;
  1342. border: none;
  1343. }
  1344. #studio-tab h4 {
  1345. line-height: 24px;
  1346. }
  1347. .studio-top.affix {
  1348. position: fixed;
  1349. top: 0;
  1350. z-index: 100;
  1351. background: #fff;
  1352. width: 100%
  1353. }
  1354. article.studio {
  1355. background: #fff;
  1356. padding: 0 15px 10px;
  1357. margin:0 0 20px;
  1358. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  1359. }
  1360. .studio-thumbnail {
  1361. max-height:180px;
  1362. overflow:hidden;
  1363. }
  1364. img.studio-thumb {
  1365. box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  1366. -webkit-filter: saturate(0) opacity(0.6);
  1367. filter: saturate(0) opacity(0.6);
  1368. -webkit-transition: all 1s;
  1369. transition: all 1s;
  1370. }
  1371. img.studio-thumb:hover {
  1372. -webkit-filter: saturate(1) opacity(1);
  1373. filter: saturate(1) opacity(1);
  1374. }
  1375. /*============================================
  1376. Art
  1377. ==============================================*/
  1378. .art-gallery {
  1379. background: #313131;
  1380. }
  1381. body.art .site-title a {
  1382. color: #FFFFFF;
  1383. }
  1384. .art a {
  1385. color: #2F3446;
  1386. }
  1387. .art a:hover {
  1388. color: #cecece;
  1389. text-decoration: none;
  1390. }
  1391. .art a:active {
  1392. color: #FFFFFF;
  1393. text-decoration: none;
  1394. }
  1395. .art-image {
  1396. border: 10px solid #FFFFFF;
  1397. max-height: 800px;
  1398. margin: auto;
  1399. }
  1400. .art-gallery .controls {
  1401. position: relative;
  1402. bottom: 0;
  1403. }
  1404. .art-gallery .prev-next {
  1405. margin: 10px 0 10px;
  1406. }
  1407. .art-gallery .carousel-indicators {
  1408. position: relative;
  1409. margin: 10px 0;
  1410. padding: 0;
  1411. width: 100%;
  1412. left: 0 !important;
  1413. }
  1414. .art-gallery .carousel-indicators li {
  1415. border: 1px solid #555;
  1416. }
  1417. .art-gallery .carousel-indicators .active {
  1418. background-color: #555;
  1419. }
  1420. .studio .entry-content {
  1421. height: 120px;
  1422. }
  1423. /*============================================
  1424. Now
  1425. ==============================================*/
  1426. .desk ul.now-doing li{
  1427. color: #4e4e4e;
  1428. line-height: 1.4em;
  1429. margin: 0 0 5px 0;
  1430. }
  1431. /*============================================
  1432. Desk
  1433. ==============================================*/
  1434. .desk {
  1435. background:#ffffff;
  1436. padding:50px;
  1437. box-shadow:0 0 5px rgba(0,0,0,.1)
  1438. }
  1439. .desk li {
  1440. color: #777
  1441. }
  1442. h1#now {
  1443. color: #ffffff;
  1444. }
  1445. /*============================================
  1446. Music
  1447. ==============================================*/
  1448. .albums {
  1449. position: relative;
  1450. }
  1451. .albums:after {
  1452. content: "";
  1453. display: table;
  1454. clear: both;
  1455. }
  1456. .album {
  1457. float: left;
  1458. height: auto;
  1459. position: relative;
  1460. font-size: 12px;
  1461. -webkit-transition: -webkit-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1462. -moz-transition: -moz-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1463. -o-transition: -o-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1464. transition: transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1465. -webkit-perspective: 600px;
  1466. perspective: 600px;
  1467. }
  1468. .album img {
  1469. width: 100%;
  1470. height: auto;
  1471. }
  1472. .album h1, .album h2, .album h3 {
  1473. font-size: 13px;
  1474. line-height: 15px;
  1475. }
  1476. .album .front, .album .back {
  1477. float: none;
  1478. width: 100%;
  1479. height: auto;
  1480. -webkit-transform-style: preserve-3d;
  1481. transform-style: preserve-3d;
  1482. -webkit-transition: -webkit-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1483. -moz-transition: -moz-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1484. -o-transition: -o-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1485. transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1486. }
  1487. .album .front {
  1488. z-index: 1;
  1489. -webkit-transform: rotateY(0deg);
  1490. -moz-transform: rotateY(0deg);
  1491. -ms-transform: rotateY(0deg);
  1492. -o-transform: rotateY(0deg);
  1493. transform: rotateY(0deg);
  1494. }
  1495. .album .front .alpha {
  1496. -webkit-transition: opacity 0.4s ease-in-out;
  1497. -moz-transition: opacity 0.4s ease-in-out;
  1498. -o-transition: opacity 0.4s ease-in-out;
  1499. transition: opacity 0.4s ease-in-out;
  1500. display: block;
  1501. content: '';
  1502. height: 100%;
  1503. width: 100%;
  1504. position: absolute;
  1505. top: 0;
  1506. left: 0;
  1507. background: rgba(255, 255, 255, 0.85);
  1508. opacity: 0;
  1509. }
  1510. .album .back {
  1511. position: absolute;
  1512. top: 0;
  1513. left: 0;
  1514. z-index: 0;
  1515. text-align: center;
  1516. font-family: sans-serif;
  1517. padding: 10px;
  1518. opacity: 0;
  1519. -webkit-box-sizing: border-box;
  1520. -moz-box-sizing: border-box;
  1521. box-sizing: border-box;
  1522. -webkit-backface-visibility: hidden;
  1523. backface-visibility: hidden;
  1524. -webkit-transform: rotateY(-180deg);
  1525. -moz-transform: rotateY(-180deg);
  1526. -ms-transform: rotateY(-180deg);
  1527. -o-transform: rotateY(-180deg);
  1528. transform: rotateY(-180deg);
  1529. }
  1530. .album.flip {
  1531. -webkit-transform: scale(1.1, 1.1);
  1532. -moz-transform: scale(1.1, 1.1);
  1533. -ms-transform: scale(1.1, 1.1);
  1534. -o-transform: scale(1.1, 1.1);
  1535. transform: scale(1.1, 1.1);
  1536. z-index: 10;
  1537. }
  1538. .album.flip .front {
  1539. -webkit-transform: rotateY(180deg);
  1540. -moz-transform: rotateY(180deg);
  1541. -ms-transform: rotateY(180deg);
  1542. -o-transform: rotateY(180deg);
  1543. transform: rotateY(180deg);
  1544. }
  1545. .album.flip .front .alpha {
  1546. opacity: 1;
  1547. }
  1548. .album.flip .back {
  1549. z-index: 2;
  1550. opacity: 1;
  1551. -webkit-transform: rotateY(0deg);
  1552. -moz-transform: rotateY(0deg);
  1553. -ms-transform: rotateY(0deg);
  1554. -o-transform: rotateY(0deg);
  1555. transform: rotateY(0deg);
  1556. }
  1557. .album {
  1558. width: 20%;
  1559. -webkit-text-size-adjust: none;
  1560. }
  1561. #music li.list-group-item {
  1562. padding: 5px 15px;
  1563. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  1564. font-size: 12px;
  1565. }
  1566. #music.entry-content ul {
  1567. margin:0 0 24px;
  1568. }
  1569. @media screen and (max-width: 768px) {
  1570. .album h1, .album h2, .album h3 {
  1571. font-size: 13px;
  1572. line-height: 15px;
  1573. }
  1574. .album {
  1575. width: 25%;
  1576. }
  1577. }
  1578. @media screen and (min-width: 992px) {
  1579. .album h1, .album h2, .album h3 {
  1580. font-size: 15px;
  1581. line-height: 17px;
  1582. }
  1583. }
  1584. .doughnut-legend li span {
  1585. display: block;
  1586. width: 14px;
  1587. height: 14px;
  1588. border-radius: 7px;
  1589. float: left;
  1590. margin-top: 4px;
  1591. margin-right: 8px;
  1592. }
  1593. .doughnut-legend {
  1594. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  1595. list-style: none;
  1596. margin: 20px 0 0;
  1597. padding: 0;
  1598. font-size: 14px;
  1599. }
  1600. div#player{
  1601. width: 100%;
  1602. color: #555555;
  1603. font-family: 'PT Sans', sans-serif;
  1604. font-weight: 700;
  1605. font-size: 12px;
  1606. }
  1607. #song-information{
  1608. text-align: left;
  1609. margin: 0 0 10px;
  1610. }
  1611. #controls{
  1612. float: left;
  1613. }
  1614. #amplitude-volume-slider{
  1615. width: 90%;
  1616. float: right;
  1617. }
  1618. #amplitude-play-pause{
  1619. width: 15px;
  1620. height: 17px;
  1621. margin: 0 5px 0 0;
  1622. cursor: pointer;
  1623. float: right;
  1624. }
  1625. #amplitude-current-time{
  1626. font-family: 'PT Sans', sans-serif;
  1627. font-size: 14px;
  1628. font-weight: 400;
  1629. }
  1630. .amplitude-paused{
  1631. background-image: url('img/small-gray-play.png');
  1632. background-repeat: no-repeat;
  1633. }
  1634. .amplitude-playing{
  1635. background-image: url('img/small-gray-pause.png');
  1636. background-repeat: no-repeat;
  1637. }
  1638. #amplitude-now-playing-name{
  1639. }
  1640. #amplitude-now-playing-listeners{
  1641. }
  1642. #amplitude-now-playing-bitrate{
  1643. }
  1644. /*============================================
  1645. Anatlyics
  1646. ==============================================*/
  1647. .widget {
  1648. background:#000 !important;
  1649. }
  1650. .map {
  1651. height:500px;
  1652. }
  1653. /*============================================
  1654. ==============================================
  1655. General Content
  1656. ==============================================
  1657. ==============================================*/
  1658. .screen-reader {
  1659. text-indent: -10000px;
  1660. top:auto;
  1661. width:1px;
  1662. height:1px;
  1663. overflow:hidden;
  1664. }
  1665. .divider {
  1666. border-bottom: 1px solid #cecece;
  1667. width:100%;
  1668. margin: 30px 0 30px;
  1669. }
  1670. #content {
  1671. margin-bottom: 36px;
  1672. margin-top: 100px;
  1673. }
  1674. #content,
  1675. #content input,
  1676. #content textarea {
  1677. color: #111;
  1678. }
  1679. #content p,
  1680. #content ul,
  1681. #content ol,
  1682. #content dd,
  1683. #content pre,
  1684. #content hr {
  1685. margin-bottom: 24px;
  1686. }
  1687. #content ul ul,
  1688. #content ol ol,
  1689. #content ul ol,
  1690. #content ol ul {
  1691. margin-bottom: 0;
  1692. }
  1693. #content pre,
  1694. #content kbd,
  1695. #content tt,
  1696. #content var {
  1697. font-size: 15px;
  1698. line-height: 21px;
  1699. }
  1700. #content code {
  1701. font-size: 13px;
  1702. }
  1703. #content dt,
  1704. #content th {
  1705. color: #000;
  1706. }
  1707. #content h1,
  1708. #content h2,
  1709. #content h3,
  1710. #content h4,
  1711. #content h5,
  1712. #content h6 {
  1713. color: #000;
  1714. line-height: 1.5em;
  1715. margin: 0 0 16px 0;
  1716. }
  1717. #content table {
  1718. border: 1px solid #e7e7e7;
  1719. margin: 0 -1px 24px 0;
  1720. text-align: left;
  1721. width: 100%;
  1722. }
  1723. #content tr th,
  1724. #content thead th {
  1725. color: #888;
  1726. font-size: 12px;
  1727. font-weight: bold;
  1728. line-height: 18px;
  1729. padding: 9px 24px;
  1730. }
  1731. #content tr td {
  1732. border-top: 1px solid #e7e7e7;
  1733. padding: 6px 24px;
  1734. }
  1735. #content tr.odd td {
  1736. background: #f2f7fc;
  1737. }
  1738. .hentry {
  1739. margin: 0 0 30px 0;
  1740. }
  1741. .reserved-gallery {
  1742. float: left;
  1743. padding: 5px;
  1744. }
  1745. .home .sticky {
  1746. background: #f2f7fc;
  1747. border-top: 4px solid #000;
  1748. margin-left: -20px;
  1749. margin-right: -20px;
  1750. padding: 18px 20px;
  1751. }
  1752. .single .hentry {
  1753. margin: 0 0 36px 0;
  1754. }
  1755. .page-title {
  1756. color: #000;
  1757. font-size: 14px;
  1758. font-weight: bold;
  1759. margin: 0 0 36px 0;
  1760. }
  1761. .page-title span {
  1762. color: #333;
  1763. font-size: 16px;
  1764. font-style: italic;
  1765. font-weight: normal;
  1766. }
  1767. .entry-caption-parent .page-title span {
  1768. color: #777;
  1769. font-size: 12px;
  1770. font-style: italic;
  1771. font-weight: normal;
  1772. }
  1773. .nav-previous span.meta-nav {
  1774. color: #555;
  1775. font-size: 18px;
  1776. font-weight: normal;
  1777. }
  1778. .nav-next span.meta-nav {
  1779. color: #555;
  1780. font-size: 16px;
  1781. font-weight: normal;
  1782. }
  1783. .page-title a:link,
  1784. .page-title a:visited {
  1785. color: #888;
  1786. text-decoration: none;
  1787. }
  1788. .page-title a:active,
  1789. .page-title a:hover {
  1790. color: #2a6496;
  1791. }
  1792. #content .entry-title {
  1793. color: #000;
  1794. font-size: 26px;
  1795. font-weight: bold;
  1796. line-height: 1.3em;
  1797. margin: 20px 0 20px;
  1798. }
  1799. h2.entry-title {
  1800. color: #999;
  1801. }
  1802. .entry-title a:link,
  1803. .entry-title a:visited {
  1804. color: #000;
  1805. text-decoration: none;
  1806. }
  1807. .entry-title a:active,
  1808. .entry-title a:hover {
  1809. color: #2a6496;
  1810. }
  1811. .entry-meta {
  1812. color: #888;
  1813. font-size: 12px;
  1814. }
  1815. .entry-meta-attachment {
  1816. float: right;
  1817. color: #888;
  1818. font: 11px "Courier New", Courier, mono;
  1819. }
  1820. .entry-meta abbr,
  1821. .entry-utility abbr {
  1822. border: none;
  1823. }
  1824. .entry-meta abbr:hover,
  1825. .entry-utility abbr:hover {
  1826. border-bottom: 1px dotted #666;
  1827. }
  1828. .entry-content,
  1829. .entry-summary {
  1830. clear: both;
  1831. padding: 18px 0 20px;
  1832. }
  1833. .entry-guestbook {
  1834. clear: both;
  1835. padding: 3px 0 10px 0;
  1836. }
  1837. .entry-content p {
  1838. font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
  1839. }
  1840. .signature {
  1841. float: right;
  1842. margin: 10px 150px 40px 0px;
  1843. }
  1844. span.author {
  1845. display:none;
  1846. }
  1847. #inside h3 {
  1848. font: 16px "Courier New", Courier, mono;
  1849. line-height: 10px;
  1850. margin: 0 0 10px 0;
  1851. }
  1852. #inside p {
  1853. margin: 0 0 10px 0;
  1854. line-height: 20px;
  1855. }
  1856. #content .entry-summary p:last-child {
  1857. margin-bottom: 12px;
  1858. }
  1859. .entry-content fieldset {
  1860. margin: 0 0 24px 0;
  1861. padding: 24px;
  1862. }
  1863. .entry-content fieldset legend {
  1864. background: #fff;
  1865. color: #000;
  1866. font-weight: bold;
  1867. padding: 0 24px;
  1868. }
  1869. .entry-content input {
  1870. margin: 0 0 20px 0;
  1871. }
  1872. .entry-content input.file,
  1873. .entry-content input.button {
  1874. margin-right: 24px;
  1875. }
  1876. .entry-content label {
  1877. color: #888;
  1878. font-size: 12px;
  1879. }
  1880. .entry-content select {
  1881. margin: 0 0 24px 0;
  1882. }
  1883. .entry-content sup,
  1884. .entry-content sub {
  1885. font-size: 10px;
  1886. }
  1887. .entry-content blockquote {
  1888. border-left:none;
  1889. font-style:italic;
  1890. margin: 0 0px 20px;
  1891. color:#333;
  1892. background:#eeeeeec7;
  1893. padding:20px;
  1894. }
  1895. blockquote p {
  1896. margin: 0 0 12px !important;
  1897. }
  1898. .wp-block-image figcaption {
  1899. display: block !important;
  1900. }
  1901. .entry-content blockquote cite {
  1902. text-align:right;
  1903. margin-bottom:0;
  1904. }
  1905. .entry-content blockquote cite p {
  1906. text-align:right;
  1907. margin-bottom:0 !important;
  1908. }
  1909. .entry-content blockquote.left {
  1910. float: left;
  1911. margin-left: 0;
  1912. margin-right: 24px;
  1913. text-align: right;
  1914. width: 33%;
  1915. }
  1916. .entry-content blockquote.right {
  1917. float: right;
  1918. margin-left: 24px;
  1919. margin-right: 0;
  1920. text-align: left;
  1921. width: 33%;
  1922. }
  1923. .page-link {
  1924. color: #000;
  1925. font-weight: bold;
  1926. margin: 0 0 22px 0;
  1927. word-spacing: 0.5em;
  1928. }
  1929. .page-link a:link,
  1930. .page-link a:visited {
  1931. background: #f1f1f1;
  1932. color: #333;
  1933. font-weight: normal;
  1934. padding: 0.5em 0.75em;
  1935. text-decoration: none;
  1936. }
  1937. .home .sticky .page-link a {
  1938. background: #d9e8f7;
  1939. }
  1940. .page-link a:active,
  1941. .page-link a:hover {
  1942. color: #ff4b33;
  1943. }
  1944. body.page .edit-link {
  1945. clear: both;
  1946. display: block;
  1947. }
  1948. .entry-utility {
  1949. clear: both;
  1950. color: #888;
  1951. font-size: 12px;
  1952. line-height: 18px;
  1953. }
  1954. .entry-meta a,
  1955. .entry-utility a {
  1956. color: #888;
  1957. }
  1958. .entry-meta a:hover,
  1959. .entry-utility a:hover {
  1960. color: #ff4b33;
  1961. }
  1962. #content .video-player {
  1963. padding: 0;
  1964. }
  1965. .date {
  1966. float: right;
  1967. margin: 0px 0 20px 50px;
  1968. color: #777;
  1969. font: 14px/18px "Courier New", Courier, mono;
  1970. }
  1971. .front-date {
  1972. float: right;
  1973. margin: 0px 0 0px 40px;
  1974. color: #777;
  1975. font: 14px/18px "Courier New", Courier, mono;
  1976. }
  1977. #content ul li li {
  1978. padding: 0 0 0 20px;
  1979. }
  1980. .list-group-horizontal .list-group-item {
  1981. display: inline-block;
  1982. }
  1983. .list-group-horizontal .list-group-item {
  1984. margin-bottom: 0;
  1985. margin-left:-2px;
  1986. margin-right: 0;
  1987. }
  1988. .list-group-horizontal .list-group-item:first-child {
  1989. border-top-right-radius:0;
  1990. border-bottom-left-radius:4px;
  1991. }
  1992. .list-group-horizontal .list-group-item:last-child {
  1993. border-top-right-radius:4px;
  1994. border-bottom-left-radius:0;
  1995. }
  1996. .archive-page {
  1997. background:#fff;
  1998. box-shadow: 0 0 5px rgba(0,0,0,.1);
  1999. padding: 70px 100px 140px;
  2000. }
  2001. .single-card {
  2002. border: 1px solid #eee;
  2003. padding:10px 15px;
  2004. margin:10px 0 10px;
  2005. min-height: 230px;
  2006. }
  2007. .single-card:hover{
  2008. background-color: rgba(0, 0, 0, 0.1);
  2009. }
  2010. .single-card .entry-title {
  2011. margin-bottom:5px !important;
  2012. }
  2013. .single-card-thumbnail img {
  2014. border:5px solid #cecece;
  2015. }
  2016. article.studio {
  2017. background: #fff;
  2018. padding: 0 15px 10px;
  2019. margin:0 0 20px;
  2020. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  2021. }
  2022. .archive-thumbnail {
  2023. max-height:180px;
  2024. overflow:hidden;
  2025. }
  2026. img.archive-thumb {
  2027. box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  2028. -webkit-filter: saturate(1) opacity(1);
  2029. filter: saturate(1) opacity(1);
  2030. -webkit-transition: all 1s;
  2031. transition: all 1s;
  2032. }
  2033. img.archive-thumb:hover {
  2034. -webkit-filter: saturate(3) opacity(1) invert(.8);
  2035. filter: saturate(3) opacity(1) invert(.8);
  2036. }
  2037. /*============================================
  2038. Meta
  2039. ==============================================*/
  2040. .meta {
  2041. font-size: 11px;
  2042. }
  2043. .categories-fb {
  2044. text-align: right;
  2045. }
  2046. span.fb {
  2047. width: 16px;
  2048. height: 16px;
  2049. margin-left: 5px;
  2050. padding: 3px 4px 2px 5px;
  2051. background-image: url(img/fb1.png) ;
  2052. background-position: 0 16px;
  2053. position: relative;
  2054. -webkit-transition: all ease 0.3s;
  2055. -moz-transition: all ease 0.3s;
  2056. -o-transition: all ease 0.3s;
  2057. transition: all ease 0.3s;
  2058. }
  2059. span.fb:hover {
  2060. background-position: 0 0;
  2061. }
  2062. /*============================================
  2063. Comments
  2064. ==============================================*/
  2065. #commentform input.error,
  2066. #commentform textarea.error {
  2067. background: #FFD2D2;
  2068. color:#000000;
  2069. }
  2070. #commentform .error {
  2071. color: #FF0000;
  2072. }
  2073. .commentbubble {
  2074. font-family:"CM Type";
  2075. font-size: 13px;
  2076. color: #777;
  2077. margin: 0px 15px 0 0;
  2078. }
  2079. .comment {
  2080. padding: 10px;
  2081. }
  2082. .commentbubble a.toogle-comments {
  2083. float: right;
  2084. text-align: right;
  2085. }
  2086. .comments-area {
  2087. background: rgba(242,242,242,.7);
  2088. padding: 15px;
  2089. margin: 60px 0 0 0;
  2090. }
  2091. #content .comments-area p {
  2092. margin: 0 0 8px;
  2093. font-size: 13px;
  2094. }
  2095. #content .comments-area .reply {
  2096. margin: 5px 8px 0px;
  2097. padding: 2px 9px;
  2098. background: rgba(242,242,242,.5);
  2099. font-size: 11px;
  2100. }
  2101. .comments-title {
  2102. margin-bottom: 48px;
  2103. font-size: 16px;
  2104. line-height: 1.5;
  2105. font-weight: normal;
  2106. }
  2107. .comments-area ul {
  2108. margin: 0px 0px;
  2109. list-style: none;
  2110. }
  2111. .comments-area h3 {
  2112. margin: 0 0 0;
  2113. }
  2114. .comments-meta {
  2115. font-size: 10px;
  2116. }
  2117. .comments-area article {
  2118. margin: 24px 0;
  2119. }
  2120. .comments-area article header {
  2121. margin: 0 0 48px;
  2122. overflow: hidden;
  2123. position: relative;
  2124. }
  2125. .comments-area article header img {
  2126. float: left;
  2127. padding: 0;
  2128. line-height: 0;
  2129. }
  2130. .comments-area article header cite,
  2131. .comments-area article header time {
  2132. display: block;
  2133. margin-left: 85px;
  2134. }
  2135. .comments-area article header cite {
  2136. font-style: normal;
  2137. font-size: 15px;
  2138. }
  2139. .comments-area cite b {
  2140. font-weight: normal;
  2141. }
  2142. .comments-area article header time {
  2143. text-decoration: none;
  2144. font-size: 12px;
  2145. color: #5e5e5e;
  2146. }
  2147. .comments-area article header a {
  2148. text-decoration: none;
  2149. color: #5e5e5e;
  2150. }
  2151. .comments-area article header a:hover {
  2152. color: #21759b;
  2153. }
  2154. .comments-area article header cite a {
  2155. color: #444;
  2156. }
  2157. .comments-area article header cite a:hover {
  2158. text-decoration: underline;
  2159. }
  2160. a.comment-reply-link,
  2161. a.comment-edit-link {
  2162. color: #686868;
  2163. font-size: 13px;
  2164. }
  2165. a.comment-reply-link:hover,
  2166. a.comment-edit-link:hover {
  2167. color: #21759b;
  2168. }
  2169. .commentlist .pingback {
  2170. line-height: 1.714285714;
  2171. margin-bottom: 24px;
  2172. }
  2173. li.comment.even {
  2174. background: #fff;
  2175. }
  2176. li.comment.odd {
  2177. background: #f3f3f3;
  2178. }
  2179. li.comment.thread-even {
  2180. background: #f5f5f5;
  2181. }
  2182. li.comment.thread-odd {
  2183. background: #fff;
  2184. }
  2185. .comment-meta {
  2186. font-size: 11px;
  2187. line-height: 12px;
  2188. }
  2189. .comment-meta a {
  2190. color: #777;
  2191. float: right;
  2192. margin-top: -15px;
  2193. }
  2194. /*====== Comment form ======*/
  2195. #respond {
  2196. margin-top: 10px;
  2197. }
  2198. #respond h3#reply-title {
  2199. margin: 0px 8px 0px;
  2200. padding: 2px 9px;
  2201. font-size: 11px;
  2202. }
  2203. #respond h3#reply-title #cancel-comment-reply-link {
  2204. margin-left: 10px;
  2205. font-weight: normal;
  2206. font-size: 12px;
  2207. }
  2208. #respond form {
  2209. margin: 24px 0;
  2210. }
  2211. #respond form p {
  2212. margin: 11px 0;
  2213. }
  2214. #respond form p.logged-in-as {
  2215. margin-bottom: 24px;
  2216. }
  2217. #respond form label {
  2218. display: block;
  2219. line-height: 1.714285714;
  2220. }
  2221. #respond form input[type="text"],
  2222. #respond form textarea {
  2223. -moz-box-sizing: border-box;
  2224. box-sizing: border-box;
  2225. line-height: 1.714285714;
  2226. padding: 10px;
  2227. width: 100%;
  2228. }
  2229. #respond form p.form-allowed-tags {
  2230. margin: 0;
  2231. font-size: 12px;
  2232. line-height: 2;
  2233. color: #5e5e5e;
  2234. }
  2235. .required {
  2236. color: red;
  2237. }
  2238. .form-submit {
  2239. display: none;
  2240. }
  2241. .comment-form-author,
  2242. .comment-form-email,
  2243. .comment-form-url {
  2244. width: 50%;
  2245. }
  2246. /*============================================
  2247. Media
  2248. ==============================================*/
  2249. .video-container {
  2250. position: relative;
  2251. padding-bottom: 56.25%;
  2252. padding-top: 30px; height: 0; overflow: hidden;
  2253. }
  2254. .video-container iframe,
  2255. .video-container object,
  2256. .video-container embed {
  2257. position: absolute;
  2258. top: 0;
  2259. left: 0;
  2260. width: 100%;
  2261. height: 100%;
  2262. }
  2263. .category-gallery .size-thumbnail img {
  2264. border: 10px solid #f1f1f1;
  2265. margin-bottom: 0;
  2266. }
  2267. .category-gallery .gallery-thumb {
  2268. float: left;
  2269. margin-right: 20px;
  2270. margin-top: -4px;
  2271. }
  2272. .home #content .category-gallery .entry-utility {
  2273. padding-top: 4px;
  2274. }
  2275. /*===== Attachments =====*/
  2276. .single-attachment .hentry {
  2277. margin: 0px;
  2278. }
  2279. .attachment .entry-content .entry-caption {
  2280. font-size: 140%;
  2281. margin-top: 24px;
  2282. }
  2283. .entry-caption-attachment {
  2284. margin: 0px auto 0;
  2285. text-align: center;
  2286. }
  2287. #content .entry-caption-attachment h2.entry-title {
  2288. margin: 0 0 5px;
  2289. font-weight: normal;
  2290. }
  2291. #content .entry-caption-parent p.page-title {
  2292. margin: -30px 0 0 0;
  2293. font: normal 13px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  2294. }
  2295. #content .entry-caption-parent p.page-title a {
  2296. color: #555;
  2297. }
  2298. #content .entry-caption-attachment p {
  2299. font-size: 14px;
  2300. text-indent: 0px;
  2301. line-height: 15px;
  2302. margin-bottom: 0px;
  2303. }
  2304. .entry-caption-attachment h2 {
  2305. font: bold 27px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  2306. }
  2307. .attachment .entry-content .nav-previous a:before {
  2308. content: '\2190\00a0';
  2309. }
  2310. .attachment .entry-content .nav-next a:after {
  2311. content: '\00a0\2192';
  2312. }
  2313. /*===== Images ======*/
  2314. img.avatar {
  2315. width: 50px;
  2316. height: 50px;
  2317. -webkit-border-radius: 30px;
  2318. -moz-border-radius: 30px;
  2319. border-radius: 30px;
  2320. }
  2321. img.me {
  2322. height: 70px;
  2323. margin: 0 10px 0 0;
  2324. padding: 0 5px;
  2325. float: left;
  2326. -webkit-border-radius: 50%;
  2327. -moz-border-radius: 50%;
  2328. border-radius: 50%;
  2329. -webkit-filter: grayscale(1);
  2330. filter:grayscale(1);
  2331. }
  2332. .entry-content img {
  2333. max-width: 100%;
  2334. height: auto;
  2335. }
  2336. .img-rounded {
  2337. border-radius: 6px;
  2338. }
  2339. .img-thumbnail {
  2340. padding: 4px;
  2341. line-height: 1.42857143;
  2342. background-color: #ffffff;
  2343. border: 1px solid #dddddd;
  2344. border-radius: 4px;
  2345. -webkit-transition: all 0.2s ease-in-out;
  2346. -o-transition: all 0.2s ease-in-out;
  2347. transition: all 0.2s ease-in-out;
  2348. display: inline-block;
  2349. width: 100% \9;
  2350. max-width: 100%;
  2351. height: auto;
  2352. }
  2353. .img-circle {
  2354. border-radius: 50%;
  2355. }
  2356. #content .home img {
  2357. border: 15px solid #000;
  2358. }
  2359. #content .alignleft,
  2360. #content img.alignleft {
  2361. display: inline;
  2362. float: left;
  2363. margin-right: 24px;
  2364. margin-top: 4px;
  2365. }
  2366. #content .alignright,
  2367. #content img.alignright {
  2368. display: inline;
  2369. float: right;
  2370. margin-left: 24px;
  2371. margin-top: 4px;
  2372. }
  2373. #content .aligncenter,
  2374. #content img.aligncenter {
  2375. clear: both;
  2376. margin-left: auto;
  2377. margin-right: auto;
  2378. }
  2379. #content img.alignleft,
  2380. #content img.alignright,
  2381. #content img.aligncenter {
  2382. margin-bottom: 12px;
  2383. }
  2384. #content img.alignfull,
  2385. #content img.alignwide
  2386. {
  2387. max-width: 100vw;
  2388. width: 100vw;
  2389. }
  2390. #content .wp-caption {
  2391. color: #737373;
  2392. line-height: 18px;
  2393. margin-bottom: 20px;
  2394. padding: 4px;
  2395. text-align: center;
  2396. }
  2397. #content .wp-caption img {
  2398. margin: 5px 5px 0;
  2399. }
  2400. #content .wp-caption p.wp-caption-text {
  2401. color: #888;
  2402. font-size: 10px;
  2403. margin: 5px;
  2404. }
  2405. #content .attachment img {
  2406. display: block;
  2407. margin: 0 auto;
  2408. }
  2409. .gallery { margin: 0 auto 18px; }
  2410. .gallery .gallery-item {
  2411. float: left;
  2412. margin-top: 0;
  2413. text-align: center;
  2414. width: 33%;
  2415. }
  2416. .gallery-columns-2 .gallery-item { width: 50%; }
  2417. .gallery-columns-4 .gallery-item { width: 25%; }
  2418. .gallery img {
  2419. box-shadow: 0px 0px 4px #999;
  2420. border: 5px solid #000;
  2421. padding: 8px;
  2422. background: #555;
  2423. }
  2424. .gallery img:hover {
  2425. background: #777;
  2426. }
  2427. .gallery-columns-2 .attachment-medium {
  2428. max-width: 92%;
  2429. height: auto;
  2430. }
  2431. .gallery-columns-4 .attachment-thumbnail {
  2432. max-width: 84%;
  2433. height: auto;
  2434. }
  2435. .gallery .gallery-caption {
  2436. color: #888;
  2437. font-size: 12px;
  2438. margin: 0 0 12px;
  2439. }
  2440. .gallery dl, .gallery dt { margin: 0; }
  2441. .gallery br+br { display: none; }
  2442. /*============================================
  2443. Pagination
  2444. ==============================================*/
  2445. .navigation {
  2446. color: #888;
  2447. font-size: 12px;
  2448. line-height: 18px;
  2449. overflow: hidden;
  2450. clear: both;
  2451. }
  2452. .navigation a:link,
  2453. .navigation a:visited {
  2454. color: #888;
  2455. text-decoration: none;
  2456. }
  2457. .navigation a:active,
  2458. .navigation a:hover {
  2459. color: #ff4b33;
  2460. }
  2461. .nav-previous {
  2462. color: #333;
  2463. font-size: 17px;
  2464. float: left;
  2465. width: 50%;
  2466. margin: 0 0 15px 0;
  2467. }
  2468. .nav-next {
  2469. color: #333;
  2470. font-size: 17px;
  2471. float: right;
  2472. text-align: right;
  2473. width: 50%;
  2474. }
  2475. #nav-above {
  2476. margin: 0 0 18px 0;
  2477. }
  2478. #nav-above {
  2479. display: none;
  2480. }
  2481. .paged #nav-above,
  2482. .single #nav-above {
  2483. display: block;
  2484. }
  2485. #nav-below {
  2486. margin: 50px 0 0px;
  2487. padding: 20px 10px 0;
  2488. border-top: 1px solid #cecece;
  2489. }
  2490. .pagination {
  2491. margin-top: 40px;
  2492. padding: 20px 0 0;
  2493. }
  2494. .pagination a {
  2495. padding: 4px 5px;
  2496. color: #fff;
  2497. font-weight: bold;
  2498. font-size: 16px;
  2499. }
  2500. .pagination a:active {
  2501. padding: 4px 5px;
  2502. background: #707071;
  2503. color:#fff;
  2504. }
  2505. .pagination a:hover {
  2506. padding: 4px 5px;
  2507. background: #fff;
  2508. color: #ec0000;
  2509. }
  2510. .pagination a.next,
  2511. .pagination a.prev {
  2512. padding: 4px 7px 25px;
  2513. margin-top:-7px;
  2514. color: #ec0000;
  2515. font-weight: bold;
  2516. font-size: 27px;
  2517. }
  2518. .pagination .current {
  2519. padding: 4px 5px;
  2520. background: #fff;
  2521. color: #ec0000;
  2522. font-weight: bold;
  2523. font-size: 16px;
  2524. }
  2525. .page-numbers {
  2526. padding: 4px 5px;
  2527. font-weight: bold;
  2528. font-size: 16px;
  2529. }
  2530. /*============================================
  2531. 404
  2532. ==============================================*/
  2533. .not-search {
  2534. margin: 30px;
  2535. padding: 10px;
  2536. height: 80px;
  2537. zoom: 180%;
  2538. }
  2539. .not-search button {
  2540. line-height: 20px;
  2541. }
  2542. /*===== Structure =====*/
  2543. .a:hover {
  2544. color: #1d8;
  2545. }
  2546. .leader {
  2547. padding: 100px 0 0;
  2548. }
  2549. .dark {
  2550. background: #222;
  2551. }
  2552. .bottom {
  2553. padding-top: 50px;
  2554. }
  2555. .centered {
  2556. float: none;
  2557. margin: 0 auto;
  2558. }
  2559. .border-left {
  2560. border-left: 1px solid #333;
  2561. }
  2562. article#main {
  2563. padding: 0px;
  2564. }
  2565. article#main .entry-content {
  2566. padding: 15px;
  2567. }
  2568. article h2 {
  2569. font-size: 28px;
  2570. }
  2571. article.single {
  2572. background: #fff;
  2573. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  2574. }
  2575. article.blurb {
  2576. background: #fff;
  2577. padding: 10px 15px;
  2578. margin:25px 0;
  2579. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  2580. }
  2581. .post {
  2582. margin-bottom: 40px;
  2583. }
  2584. article p {
  2585. text-indent: 12px;
  2586. }
  2587. article p img {
  2588. text-indent: 0px;
  2589. margin: 15px 0 15px -12px;
  2590. }
  2591. p.nobreak {
  2592. margin: 0 0 10px !important;
  2593. }
  2594. span.quiet {
  2595. display: none;
  2596. }
  2597. span.right {
  2598. float: right;
  2599. }
  2600. .checkbox-field input {
  2601. margin-right: 10px;
  2602. }
  2603. .entry-content ul {
  2604. margin: 10px 20px;
  2605. }
  2606. .entry-content ul.sitemap {
  2607. margin: 0;
  2608. }
  2609. /*============================================
  2610. Forms
  2611. ==============================================*/
  2612. .form-row {
  2613. margin: 10px 0;
  2614. }
  2615. .form-row.checkbox {
  2616. font-size: 0.85em;
  2617. }
  2618. .form-row.texts:first-of-type {
  2619. margin-top: 18px;
  2620. }
  2621. .form-row.texts + .form-row:not(.texts) {
  2622. margin-top: 30px;
  2623. }
  2624. /*============================================
  2625. Code - Sunburst Theme
  2626. ==============================================*/
  2627. pre {
  2628. background-color: #000 !important;
  2629. word-wrap: break-word;
  2630. margin: 0 0 20px 0;
  2631. padding: 10px;
  2632. color: #fff !important;
  2633. font-size: 14px;
  2634. }
  2635. pre, code {
  2636. font-family: 'Monaco', courier, monospace;
  2637. }
  2638. pre .comment {
  2639. color: #AEAEAE; font-style: italic;
  2640. }
  2641. pre .constant {
  2642. color: #3387CC;
  2643. }
  2644. pre .storage {
  2645. color: #99CF50;
  2646. }
  2647. pre .string, pre .entity.name.class, pre .comment.docstring {
  2648. color: #65B042;
  2649. }
  2650. pre .string.regexp {
  2651. color: #E9C062;
  2652. }
  2653. pre .string.constant {
  2654. color: #DDF2A4;
  2655. }
  2656. pre .constant.hex-color {
  2657. color: #DD7B3B;
  2658. }
  2659. pre .support, pre .tag.script, pre .function.call {
  2660. color: #dad085;
  2661. }
  2662. pre .support.css-property {
  2663. color: #C5AF75;
  2664. }
  2665. pre .support.tag.style {
  2666. color: #fff;
  2667. }
  2668. pre .keyword, pre .selector {
  2669. color: #E28964;
  2670. }
  2671. pre .keyword.namespace {
  2672. color: #3387CC;
  2673. font-weight: bold;
  2674. }
  2675. pre .inherited-class {
  2676. font-style: italic;
  2677. }
  2678. pre .entity, pre .variable.instance, pre .support.namespace, pre .support.tag, pre .support.tag-name {
  2679. color: #89BDFF;
  2680. }
  2681. pre .entity.name.id {
  2682. color: #8693A5;
  2683. }
  2684. *[data-language="c"] .function.call {
  2685. color: #8DA6CE;
  2686. }
  2687. pre .variable, pre .variable.global {
  2688. color: #3E87E3;
  2689. }
  2690. pre .variable.class {
  2691. }
  2692. /*============================================
  2693. v3.0 Edits!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  2694. ==============================================*/
  2695. .fc-toolbar h2 {
  2696. font-size:17px;
  2697. color: #777;
  2698. }
  2699. .fc-unthemed td.fc-today {
  2700. background: #ffffff12;
  2701. }
  2702. .fc-event {
  2703. background:none;
  2704. }
  2705. .wp-block-video video {
  2706. max-width:100% !important;
  2707. width:100% !important;
  2708. height:auto !important;
  2709. }
  2710. figcaption {
  2711. text-align:right;
  2712. color: #777777;
  2713. font-size:13px;
  2714. }
  2715. ul.tags {
  2716. font-size:14px;
  2717. }
  2718. #calendar {
  2719. color:#555;
  2720. }
  2721. .fc-theme-standard, .fc-unthemed .fc-content, .fc-unthemed .fc-divider, .fc-unthemed .fc-list-heading td, .fc-unthemed .fc-list-view, .fc-unthemed .fc-popover, .fc-unthemed .fc-row, .fc-unthemed tbody, .fc-unthemed td, .fc-unthemed th, .fc-unthemed thead {
  2722. border-color: #555;
  2723. }
  2724. .fc-theme-standard .fc-scrollgrid, .fc-theme-standard td, .fc-theme-standard th {
  2725. border-color: #555;
  2726. }
  2727. .fc .fc-toolbar.fc-header-toolbar {
  2728. margin-bottom: 5px;
  2729. }
  2730. .fc .fc-toolbar-title {
  2731. font-size: 16px;
  2732. }
  2733. .fc-h-event .fc-event-main {
  2734. color: #999;
  2735. }
  2736. .chess-html {
  2737. padding: 0 5px 0 5px;
  2738. }
  2739. p.powerdby {
  2740. display:none;
  2741. }
  2742. .nav {
  2743. display:block;
  2744. }
  2745. .site-title {
  2746. float: right !important;
  2747. }
  2748. .navbar-right {
  2749. float: right !important;
  2750. margin-right: 0px;
  2751. }
  2752. .navbar .container {
  2753. display: block;
  2754. }
  2755. a {
  2756. color:#67000a;
  2757. }
  2758. a:hover {
  2759. color:#1a8;
  2760. }
  2761. .about a {
  2762. color:#ff4557;
  2763. }
  2764. li a {
  2765. 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";
  2766. font-size: .9em;
  2767. }
  2768. ul.bookmarks {
  2769. 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";
  2770. font-size: .9em;
  2771. }
  2772. .entry-title {
  2773. font-weight:600;
  2774. }
  2775. .navbar.visible {
  2776. background:#383838b3;
  2777. }
  2778. .offcanvas {
  2779. background: #2b2e35d7;
  2780. }
  2781. ul.nav .list-group-item a {
  2782. color: #fff;
  2783. }
  2784. ul.nav .list-group-item a:hover {
  2785. color: #25c2a0;
  2786. }
  2787. ul.nav .list-group-item .fa {
  2788. color: #fff;
  2789. }
  2790. ul.nav .list-group-item .fa:hover {
  2791. color: #25c2a0;
  2792. }
  2793. ul.nav .list-group-item {
  2794. border:none;
  2795. background: none;
  2796. color: #fff;
  2797. }
  2798. ul.nav .list-group-item:first-child {
  2799. border-top-left-radius:0;
  2800. border-bottom-left-radius:0;
  2801. }
  2802. ul.nav .list-group-item:last-child {
  2803. border-top-right-radius:0;
  2804. border-bottom-right-radius:0;
  2805. }
  2806. ul.nav ul li {
  2807. margin-left: 15px;
  2808. }
  2809. figure {
  2810. margin: 1em 0px;
  2811. }
  2812. .wp-block-pullquote {
  2813. font-size: 24px;
  2814. margin: 10px 50px;
  2815. }