style.css 59 KB

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