style.css 55 KB

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