style.css 57 KB

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