style.css 60 KB

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