style.css 59 KB

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