style.css 57 KB

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