style.css 59 KB

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