style-o.css 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875
  1. /*!
  2. Theme Name: dw
  3. Theme URI: http://davidawindham.com/
  4. Author: windhamdavid
  5. Version: 2.0
  6. Thanks:
  7. normalize.css v3.0.1 * MIT License
  8. bootstrap v3.2.0 * MIT License
  9. font awesome 4.2.0 * MIT License
  10. _s | GPL License
  11. */
  12. 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}
  13. 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;}
  14. html{overflow-y: scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust: 100%;}
  15. body{line-height:1;}
  16. *,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
  17. article,aside,details,figcaption,figure,footer,header,main,nav,section{display:block;}
  18. h1,h2,h3,h4,h5,h6{clear:both;font-weight:normal;}
  19. ol,ul{list-style: none;}
  20. blockquote,q{quotes: "" "";}
  21. blockquote:before,blockquote:after,q:before,q:after{content:'';}
  22. del {text-decoration:line-through;}
  23. table{border-collapse:collapse;border-spacing:0;}
  24. a:focus {outline:thin dotted;}
  25. a img {border: 0;}
  26. .clear {clear: both;}
  27. /*============================================
  28. Body
  29. ==============================================*/
  30. body {
  31. background: rgba(242,242,242,.7)
  32. }
  33. /*============================================
  34. Typography
  35. ==============================================*/
  36. @font-face {
  37. font-family: 'Computer Modern';
  38. src: local("☺"),
  39. url('fonts/cmunrm.woff') format('woff'),
  40. url('fonts/cmunrm.ttf') format('truetype'),
  41. url('fonts/cmunrm.otf') format('opentype'),
  42. url('fonts/cmunrm.eot?') format('embedded-opentype');
  43. font-weight: normal;
  44. font-style: normal;
  45. }
  46. @font-face {
  47. font-family: 'Computer Modern';
  48. src: local("☺"),
  49. url('fonts/cmunbx.woff') format('woff'),
  50. url('fonts/cmunbx.ttf') format('truetype'),
  51. url('fonts/cmunbx.otf') format('opentype'),
  52. url('fonts/cmunbx.eot?') format('embedded-opentype');
  53. font-weight: bold;
  54. font-style: normal;
  55. }
  56. @font-face {
  57. font-family: 'CM Sans';
  58. src: local("☺"),
  59. url('fonts/cmunsx.woff') format('woff'),
  60. url('fonts/cmunsx.ttf') format('truetype'),
  61. url('fonts/cmunsx.eot?') format('embedded-opentype');
  62. font-weight: normal;
  63. font-style: normal;
  64. }
  65. @font-face {
  66. font-family: 'CM Bright';
  67. src: local("☺"),
  68. url('fonts/cmunbbx.woff') format('woff'),
  69. url('fonts/cmunbbx.ttf') format('truetype'),
  70. url('fonts/cmunbbx.eot?') format('embedded-opentype');
  71. font-weight: normal;
  72. font-style: normal;
  73. }
  74. @font-face {
  75. font-family: 'CM Concrete';
  76. src: local("☺"),
  77. url('fonts/cmunobx.woff') format('woff'),
  78. url('fonts/cmunobx.ttf') format('truetype'),
  79. url('fonts/cmunobx.eot?') format('embedded-opentype');
  80. font-weight: normal;
  81. font-style: normal;
  82. }
  83. @font-face {
  84. font-family: 'CM Type';
  85. src: local("☺"),
  86. url('fonts/cmunobx.woff') format('woff'),
  87. url('fonts/cmunobx.ttf') format('truetype'),
  88. url('fonts/cmunobx.eot?') format('embedded-opentype');
  89. font-weight: normal;
  90. font-style: normal;
  91. }
  92. .cm {
  93. font-family: "Computer Modern";
  94. }
  95. .cm-sans {
  96. font-family: "CM Sans";
  97. }
  98. .cm-concrete {
  99. font-family: "CM Concrete";
  100. }
  101. .cm-bright {
  102. font-family: "CM Bright";
  103. }
  104. .cm-type {
  105. font-family: "CM Type";
  106. }
  107. .courier {
  108. font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  109. }
  110. .didot {
  111. font-family: Didot, "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman", serif;
  112. }
  113. .georgia {
  114. font-family: Georgia, Times, "Times New Roman", serif;
  115. }
  116. * {
  117. -webkit-font-smoothing: antialiased !important;
  118. text-rendering: optimizeLegibility !important;
  119. font-weight: normal;
  120. font-family: "Computer Modern";
  121. font-size: 16px;
  122. line-height: 1.42857143;
  123. }
  124. input,button,select,textarea {
  125. font-family: inherit;
  126. font-size: inherit;
  127. line-height: inherit;
  128. }
  129. .light {
  130. color:#fcfcfc;
  131. }
  132. .dim {
  133. color: #737373;
  134. }
  135. .dull {
  136. color: #535353;
  137. }
  138. .right {
  139. text-align: right;
  140. }
  141. h1.super {
  142. margin: 40px 0 0;
  143. font-size: 39px;
  144. font-weight: bold;
  145. letter-spacing: -2px;
  146. }
  147. .conq {
  148. font-family: "aw-conqueror-didot",serif;
  149. font-style: normal;
  150. font-weight: 300;
  151. }
  152. .email a {
  153. color: #777;
  154. }
  155. /*============================================
  156. Grid
  157. ==============================================*/
  158. .container {
  159. padding-right: 15px;
  160. padding-left: 15px;
  161. margin-right: auto;
  162. margin-left: auto;
  163. }
  164. @media (max-width: 768px) {
  165. .offcanvas {
  166. display: none;
  167. }
  168. }
  169. @media (min-width: 768px) {
  170. .container {
  171. width: 750px;
  172. }
  173. .offcanvas {
  174. display: none;
  175. }
  176. .site-title {
  177. font-size: 25px;
  178. }
  179. }
  180. @media (min-width: 992px) {
  181. .container {
  182. width: 970px;
  183. }
  184. .offcanvas {
  185. display: none;
  186. }
  187. }
  188. @media (min-width: 1200px) {
  189. .container {
  190. width: 1170px;
  191. }
  192. }
  193. @media (min-width: 1310px) {
  194. }
  195. /*============================================
  196. Loader / Transit
  197. ==============================================*/
  198. #loader {
  199. position: fixed;
  200. width: 100%;
  201. height: 100%;
  202. top: 0;
  203. left: 0;
  204. font-size: 150px;
  205. text-align: center;
  206. vertical-align: middle;
  207. color: #222;
  208. z-index: 200000;
  209. background-color: #222;
  210. }
  211. .loading-animation {
  212. width: 250px;
  213. height: 250px;
  214. position: absolute;
  215. top: 0;
  216. bottom: 0;
  217. right: 0;
  218. left: 0;
  219. margin: auto;
  220. }
  221. .loading-animation svg {
  222. position:absolute;
  223. top:0;
  224. left:0;
  225. -webkit-transform-origin:center center;
  226. -ms-transform-origin:center center;
  227. -o-transform-origin:center center;
  228. transform-origin:center center;
  229. -webkit-transition:all 0.3s;
  230. -o-transition:all 0.3s;
  231. transition:all 0.3s;
  232. -webkit-transform:rotateY(0deg);
  233. -ms-transform:rotateY(0deg);
  234. -o-transform:rotateY(0deg);
  235. transform:rotateY(0deg);
  236. }
  237. .loading-animation path {
  238. fill:none;
  239. stroke:#fff;
  240. stroke-width:2;
  241. -webkit-transition:all .3s;
  242. -o-transition:all .3s;
  243. transition:all .3s;
  244. }
  245. .loading-animation .l1 path {
  246. fill:rgba(242,242,242,.1);
  247. stroke-dasharray:450;
  248. stroke-dashoffset:900;
  249. -webkit-animation:LOADING1 4s linear 0s infinite;
  250. -o-animation:LOADING1 4s linear 0s infinite;
  251. animation:LOADING1 4s linear 0s infinite;
  252. }
  253. .loading-animation .l2 path {
  254. fill:rgba(242,242,242,.1);
  255. stroke-dasharray:340;
  256. stroke-dashoffset:340;
  257. -webkit-animation:LOADING2 3s linear 0s infinite;
  258. -o-animation:LOADING2 3s linear 0s infinite;
  259. animation:LOADING2 3s linear 0s infinite;
  260. }
  261. .loading-animation .l3 path {
  262. fill:none;
  263. stroke-width:1;
  264. stroke-dasharray:33;
  265. stroke-dashoffset:33;
  266. -webkit-animation:LOADING3 2s linear 0s infinite;
  267. -o-animation:LOADING3 2s linear 0s infinite;
  268. animation:LOADING3 2s linear 0s infinite;
  269. }
  270. @-webkit-keyframes LOADING1 {
  271. 0%{stroke-dashoffset:-900;}
  272. 50%{stroke-dashoffset:0;}
  273. 100%{stroke-dashoffset:900;}
  274. }
  275. @-moz-keyframes LOADING1 {
  276. 0%{stroke-dashoffset:-900;}
  277. 50%{stroke-dashoffset:0;}
  278. 100%{stroke-dashoffset:900;}
  279. }
  280. @-o-keyframes LOADING1 {
  281. 0%{stroke-dashoffset:-900;}
  282. 50%{stroke-dashoffset:0;}
  283. 100%{stroke-dashoffset:900;}
  284. }
  285. @keyframes LOADING1 {
  286. 0%{stroke-dashoffset:-900;}
  287. 50%{stroke-dashoffset:0;}
  288. 100%{stroke-dashoffset:900;}
  289. }
  290. @-webkit-keyframes LOADING2 {
  291. 0%{stroke-dashoffset:340;}
  292. 50%{stroke-dashoffset:0;}
  293. 100%{stroke-dashoffset:-340;}
  294. }
  295. @-moz-keyframes LOADING2 {
  296. 0%{stroke-dashoffset:340;}
  297. 50%{stroke-dashoffset:0;}
  298. 100%{stroke-dashoffset:-340;}
  299. }
  300. @-o-keyframes LOADING2 {
  301. 0%{stroke-dashoffset:340;}
  302. 50%{stroke-dashoffset:0;}
  303. 100%{stroke-dashoffset:-340;}
  304. }
  305. @keyframes LOADING2 {
  306. 0%{stroke-dashoffset:340;}
  307. 50%{stroke-dashoffset:0;}
  308. 100%{stroke-dashoffset:-340;}
  309. }
  310. @-webkit-keyframes LOADING3 {
  311. 0%{stroke-dashoffset:-230;}
  312. 50%{stroke-dashoffset:0;}
  313. 100%{stroke-dashoffset:230;}
  314. }
  315. @-moz-keyframes LOADING3 {
  316. 0%{stroke-dashoffset:-230;}
  317. 50%{stroke-dashoffset:0;}
  318. 100%{stroke-dashoffset:230;}
  319. }
  320. @-o-keyframes LOADING3 {
  321. 0%{stroke-dashoffset:-230;}
  322. 50%{stroke-dashoffset:0;}
  323. 100%{stroke-dashoffset:230;}
  324. }
  325. @keyframes LOADING3 {
  326. 0%{stroke-dashoffset:-230;}
  327. 50%{stroke-dashoffset:0;}
  328. 100%{stroke-dashoffset:230;}
  329. }
  330. .svg-wrap .l1 {
  331. -webkit-animation:TURN 3s linear 0s infinite;
  332. -o-animation:TURN 3s linear 0s infinite;
  333. animation:TURN 3s linear 0s infinite;
  334. }
  335. .svg-wrap .l2 {
  336. -webkit-animation:TURN 2s linear 0s infinite;
  337. -o-animation:TURN 2s linear 0s infinite;
  338. animation:TURN 2s linear 0s infinite;
  339. }
  340. .svg-wrap .l3 {
  341. -webkit-animation:TURN 4.5s linear 0s infinite;
  342. -o-animation:TURN 4.5s linear 0s infinite;
  343. animation:TURN 4.5s linear 0s infinite;
  344. }
  345. @-webkit-keyframes TURN {
  346. 0%{-webkit-transform:rotateY(0deg);opacity:1}
  347. 25%{-webkit-transform:rotateY(90deg);opacity:.6}
  348. 50%{-webkit-transform:rotateY(180deg);opacity:1}
  349. 75%{-webkit-transform:rotateY(270deg);opacity:.6}
  350. 100%{-webkit-transform:rotateY(360deg);opacity:1}}
  351. @-webkit-keyframes TURNBACK {
  352. 0%{-webkit-transform:rotateY(360deg);opacity:1}
  353. 25%{-webkit-transform:rotateY(270deg);opacity:.6}
  354. 50%{-webkit-transform:rotateY(180deg);opacity:1}
  355. 75%{-webkit-transform:rotateY(90deg);opacity:.6}
  356. 100%{-webkit-transform:rotateY(0deg);opacity:1}}
  357. .m-scene .scene_element {
  358. -webkit-animation-duration: 0.25s;
  359. animation-duration: 0.25s;
  360. -webkit-transition-timing-function: ease-in;
  361. transition-timing-function: ease-in;
  362. -webkit-animation-fill-mode: both;
  363. animation-fill-mode: both; }
  364. .m-scene .scene_element--fadein {
  365. -webkit-animation-name: fadeIn;
  366. animation-name: fadeIn; }
  367. .m-scene .scene_element--fadeinup {
  368. -webkit-animation-name: fadeInUp;
  369. animation-name: fadeInUp; }
  370. .m-scene .scene_element--fadeinright {
  371. -webkit-animation-name: fadeInRight;
  372. animation-name: fadeInRight; }
  373. .m-scene .scene_element--delayed {
  374. -webkit-animation-delay: 0.25s;
  375. animation-delay: 0.25s; }
  376. .m-scene.is-exiting .scene_element {
  377. -webkit-animation-direction: alternate-reverse;
  378. animation-direction: alternate-reverse; }
  379. .m-scene.is-exiting .scene_element--delayed {
  380. -webkit-animation-delay: 0s;
  381. animation-delay: 0s; }
  382. .m-scene.is-exiting .scene_element--noexiting {
  383. -webkit-animation-direction: alternate-reverse;
  384. animation-direction: alternate-reverse; }
  385. /*============================================
  386. Intro
  387. ==============================================*/
  388. .screen-reader {
  389. text-indent: -10000px;
  390. top:auto;
  391. width:1px;
  392. height:1px;
  393. overflow:hidden;
  394. }
  395. @keyframes blink {
  396. 0% { opacity: 0; }
  397. 25% { opacity: 1; }
  398. 50% { opacity: 1; }
  399. 100% { opacity: 0; }
  400. }
  401. @-webkit-keyframes blink {
  402. 0% { opacity: 0; }
  403. 25% { opacity: 1; }
  404. 50% { opacity: 1; }
  405. 100% { opacity: 0; }
  406. }
  407. @-ms-keyframes blink {
  408. 0% { opacity: 0; }
  409. 25% { opacity: 1; }
  410. 50% { opacity: 1; }
  411. 100% { opacity: 0; }
  412. }
  413. @-moz-keyframes blink {
  414. 0% { opacity: 0; }
  415. 25% { opacity: 1; }
  416. 50% { opacity: 1; }
  417. 100% { opacity: 0; }
  418. }
  419. .welcome::after {
  420. visibility: visible;
  421. content: '';
  422. background-color:green;
  423. opacity: 0;
  424. display: inline-block;
  425. position: relative;
  426. width: 0.5em;
  427. height: 1em;
  428. top: 5px;
  429. margin-left: 0;
  430. margin-bottom: 2px;
  431. -webkit-animation: blink 1s 20;
  432. -moz-animation: blink 1s 20;
  433. animation: blink 1s 20;
  434. }
  435. .welcome-back-text::after {
  436. visibility: visible;
  437. content: '';
  438. background-color:green;
  439. opacity: 0;
  440. display: inline-block;
  441. position: relative;
  442. width: 0.5em;
  443. height: 1em;
  444. top: 5px;
  445. margin-left: 0;
  446. margin-bottom: 2px;
  447. -webkit-animation: blink 1s 3;
  448. -moz-animation: blink 1s 3;
  449. animation: blink 1s 3;
  450. }
  451. .welcome-back {
  452. min-height: 500px;
  453. padding: 70px 50px 40px;
  454. font-size: 24px;
  455. color: #34F743;
  456. background: transparent url('img/terminal.svg');
  457. background-size: cover;
  458. border-radius: 1px;
  459. }
  460. .terminal-welcome .modal-content {
  461. margin: 0 0 100px;
  462. border: none;
  463. box-shadow:none;
  464. background-color: transparent !important;
  465. }
  466. .terminal .modal-content {
  467. margin: 0 0 100px;
  468. border: none;
  469. box-shadow:none;
  470. background-color: transparent !important;
  471. }
  472. [contenteditable] {outline: none;}
  473. .typed-cursor{
  474. display: none;
  475. }
  476. .thermo span.prompt {
  477. color: #389436;
  478. }
  479. .thermo p.input {
  480. line-height: 11px !important;
  481. margin: 0px;
  482. }
  483. .thermo p.response {
  484. line-height: 11px !important;
  485. margin: 0px;
  486. color:#34F743;
  487. }
  488. .thermo span.u {
  489. color: #389436;
  490. }
  491. .thermo span.at {
  492. color: #38BBC6;
  493. }
  494. .thermo span.mee {
  495. color: #389436;
  496. }
  497. .big-top {
  498. height: auto;
  499. margin: 0 auto;
  500. width: 100%;
  501. position: relative;
  502. box-shadow: 0 0 50px rgba(0,0,0,0.8);
  503. padding: 100px 0;
  504. }
  505. .caro-grad {
  506. background: #5E7A9B;
  507. background: -webkit-linear-gradient(top, #355069 0, #5e7a9b 100%);
  508. background: -moz-linear-gradient(top, #355069 0, #5e7a9b 100%);
  509. background: -o-linear-gradient(top, #355069 0, #5e7a9b 100%);
  510. background: linear-gradient(top, #355069 0, #5e7a9b 100%);
  511. }
  512. .postss:before {
  513. content: "";
  514. position: absolute;
  515. background: url(img/desk.jpg) repeat;
  516. background-size: cover;
  517. z-index: -1;
  518. height: 100%; width: 100%;
  519. filter: blur(5px);
  520. -webkit-filter: blur(5px);
  521. -moz-filter: blur(5px);
  522. -o-filter: blur(5px);
  523. -ms-filter: blur(5px);
  524. }
  525. .carousel-fade .carousel-inner .item {
  526. opacity: 0;
  527. -webkit-transition-property: opacity;
  528. -moz-transition-property: opacity;
  529. -o-transition-property: opacity;
  530. transition-property: opacity;
  531. }
  532. .carousel-fade .carousel-inner .active {
  533. opacity: 1;
  534. }
  535. .carousel-fade .carousel-inner .active.left,
  536. .carousel-fade .carousel-inner .active.right {
  537. left: 0;
  538. opacity: 0;
  539. z-index: 1;
  540. }
  541. .carousel-fade .carousel-inner .next.left,
  542. .carousel-fade .carousel-inner .prev.right {
  543. opacity: 1;
  544. }
  545. .carousel-fade .carousel-control {
  546. z-index: 2;
  547. }
  548. #caro-lead {
  549. min-height: 400px;
  550. }
  551. #caro {
  552. }
  553. .hide-svg {
  554. visibility: hidden;
  555. }
  556. .fade-svg {
  557. -webkit-animation: fadeOut 1s;
  558. -moz-animation: fadeOut 1s;
  559. -o-animation: fadeOut 1s;
  560. -ms-animation: fadeOut 1s;
  561. animation: fadeOut 1s;
  562. }
  563. .show-svg {
  564. -webkit-animation: fadeIn 1s;
  565. -moz-animation: fadeIn 1s;
  566. -o-animation: fadeIn 1s;
  567. -ms-animation: fadeIn 1s;
  568. animation: fadeIn 1s;
  569. }
  570. #caro svg#svg-imac.screen {
  571. max-height: 460px;
  572. margin: 0;
  573. float: right;
  574. }
  575. #caro svg#svg-imac.bg {
  576. max-height: 460px;
  577. margin: 0;
  578. float: right;
  579. background: transparent url('img/web.gif') no-repeat 28% 15%;
  580. }
  581. .bg1 {
  582. background-size: cover;
  583. -webkit-background-size: cover;
  584. -moz-background-size: cover;
  585. -o-background-size: cover;
  586. background-size: cover;
  587. }
  588. .blur {
  589. -webkit-filter: blur(5px);
  590. -moz-filter: blur(5px);
  591. -o-filter: blur(5px);
  592. -ms-filter: blur(5px);
  593. filter: blur(5px);
  594. }
  595. #tv {
  596. position: fixed;
  597. right: 0;
  598. top: 0;
  599. min-width: 100%;
  600. min-height: 100%;
  601. width: auto;
  602. height: auto;
  603. z-index: -100;
  604. /*background: url(img/tv.gif) no-repeat;*/
  605. background-size: cover;
  606. -webkit-background-size: cover;
  607. -moz-background-size: cover;
  608. -o-background-size: cover;
  609. filter: saturate(0);
  610. -webkit-filter: saturate(0);
  611. transform-origin: 50% 50%;
  612. -webkit-transform-origin: 50% 50%;
  613. border: none;
  614. }
  615. @-webkit-keyframes vidblur {
  616. 0% {-webkit-filter: blur(0px) saturate(0) hue-rotate(0deg);}
  617. 100% {-webkit-filter: blur(4px) saturate(2) hue-rotate(100deg);}
  618. }
  619. @-webkit-keyframes vidunblur {
  620. 0% {-webkit-filter: blur(4px) saturate(2) hue-rotate(100deg);;}
  621. 100% {-webkit-filter: blur(0px) saturate(0) hue-rotate(0deg);}
  622. }
  623. #tv.blur {
  624. -webkit-animation: vidblur 4s;
  625. animation: vidblur 4s;
  626. }
  627. #tv.unblur {
  628. -webkit-animation: vidunblur 4s;
  629. animation: vidunblur 4s;
  630. }
  631. /*============================================
  632. Navbar
  633. ==============================================*/
  634. .navbar {
  635. -webkit-transition: background-color 0.3s;
  636. -moz-transition: background-color 0.3s;
  637. transition: background-color 0.3s;
  638. -webkit-transform: translate3d(0, 0, 0);
  639. -moz-transform: translate3d(0, 0, 0);
  640. -ms-transform: translate3d(0, 0, 0);
  641. -o-transform: translate3d(0, 0, 0);
  642. transform: translate3d(0, 0, 0);
  643. }
  644. .navbar.fixed {
  645. position: fixed;
  646. top: -81px;
  647. -webkit-transition: all .3s ease-in-out;
  648. -moz-transition: all .3s ease-in-out;
  649. transition: all .3s ease-in-out;
  650. }
  651. .navbar.visible {
  652. -webkit-transform: translate3d(0, 100%, 0);
  653. -moz-transform: translate3d(0, 100%, 0);
  654. -ms-transform: translate3d(0, 100%, 0);
  655. -o-transform: translate3d(0, 100%, 0);
  656. transform: translate3d(0, 100%, 0);
  657. background-color: rgba(237, 237, 237, 0.7);
  658. }
  659. #nav {
  660. width: 100%;
  661. }
  662. #nav.affix-top {
  663. width: 100%;
  664. background-color: rgba(237, 237, 237, 0.0);
  665. }
  666. #nav.affix-top {
  667. visibility: visible;
  668. position: absolute;
  669. top:0;
  670. left:0;
  671. height:80px;
  672. -webkit-transition: all .3s ease-in-out;
  673. -moz-transition: all .3s ease-in-out;
  674. transition: all .3s ease-in-out;
  675. }
  676. #nav.affix {
  677. position: fixed;
  678. top: 0;
  679. z-index:10;
  680. -webkit-transition: all .3s ease-in-out;
  681. -moz-transition: all .3s ease-in-out;
  682. transition: all .3s ease-in-out;
  683. }
  684. /*============================================
  685. NavMenu
  686. ==============================================*/
  687. .offcanvas.in {
  688. display: block;
  689. }
  690. .canvas-sliding {
  691. -webkit-transition: .25s ease-in-out;
  692. transition: .25s ease-in-out;
  693. }
  694. .navmenu,
  695. .navbar-offcanvas {
  696. width: 170px;
  697. height: auto;
  698. }
  699. .navmenu-fixed-right,
  700. .navbar-offcanvas {
  701. position: fixed;
  702. top: 80px;
  703. bottom: 0;
  704. z-index: 1030;
  705. overflow-y: auto;
  706. border-radius: 0;
  707. left: auto;
  708. right: 0;
  709. }
  710. .nav-toggle {
  711. padding: 15px 0;
  712. padding: 10px 35px 16px 0px;
  713. right: 15px;
  714. top: 25px;
  715. cursor: pointer;
  716. position: absolute;
  717. }
  718. .nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  719. cursor: pointer;
  720. border-radius: 1px;
  721. height: 5px;
  722. width: 35px;
  723. background: #333E52;
  724. position: absolute;
  725. display: block;
  726. content: '';
  727. }
  728. .nav-toggle span:before {
  729. top: -10px;
  730. }
  731. .nav-toggle span:after {
  732. bottom: -10px;
  733. }
  734. .nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  735. transition: all 500ms ease-in-out;
  736. }
  737. .nav-toggle.active span {
  738. background-color: transparent;
  739. }
  740. .nav-toggle.active span:before, .nav-toggle.active span:after {
  741. top: 0;
  742. }
  743. .nav-toggle.active span:before {
  744. transform: rotate(45deg);
  745. -webkit-transform: rotate(45deg);
  746. -o-transform: rotate(45deg);
  747. }
  748. .nav-toggle.active span:after {
  749. transform: rotate(-45deg);
  750. -webkit-transform: rotate(-45deg);
  751. -o-transform: rotate(-45deg);
  752. }
  753. ul.social {
  754. padding: 5px 15px;
  755. }
  756. ul.social li {
  757. float: left;
  758. padding: 1px 3px;
  759. }
  760. #archives li {
  761. list-style: none;
  762. margin: 2px 8px;
  763. float: left;
  764. }
  765. .fa {
  766. color: #777;
  767. }
  768. .fa-15x {
  769. font-size: 1.6em !important;
  770. padding: 2px 2px;
  771. }
  772. /*============================================
  773. Header
  774. ==============================================*/
  775. .site-title {
  776. float: right;
  777. padding: 15px 0;
  778. }
  779. .site-title a {
  780. color: #000;
  781. text-decoration: none;
  782. }
  783. img.dw {
  784. float: right;
  785. margin: 15px 0;
  786. }
  787. #site-description {
  788. clear: right;
  789. float: right;
  790. font-style: italic;
  791. margin: 14px 0 18px 0;
  792. width: 160px;
  793. }
  794. .logo {
  795. margin: 0 auto;
  796. vertical-align: top;
  797. }
  798. .front-nav {
  799. margin: 10px 0 0;
  800. }
  801. /*============================================
  802. Content
  803. ==============================================*/
  804. /*===== Structure =====*/
  805. .a:hover {
  806. color: #1d8;
  807. }
  808. .leader {
  809. padding: 80px 0 0;
  810. }
  811. .dark {
  812. background: #222;
  813. }
  814. .bottom {
  815. padding-top: 50px;
  816. }
  817. .footer {
  818. padding: 50px 0;
  819. }
  820. .footer-home {
  821. padding: 90px 0 50px;
  822. }
  823. .centered {
  824. float: none;
  825. margin: 0 auto;
  826. }
  827. article#main {
  828. padding: 0px;
  829. }
  830. article#main .entry-content {
  831. padding: 15px;
  832. }
  833. article h2 {
  834. font-size: 28px;
  835. }
  836. article.single {
  837. background: #fff;
  838. padding: 70px 60px;
  839. }
  840. article.home {
  841. background: rgba(255, 255, 255, 0.9);
  842. padding: 70px 60px;
  843. border-radius: 10px;
  844. }
  845. .post {
  846. margin-bottom: 40px;
  847. }
  848. article p {
  849. text-indent: 12px;
  850. }
  851. /*===== Footer =====*/
  852. p.cc {
  853. float: right;
  854. font-size: 14px;
  855. margin: 2px 20px 30px 10px;
  856. }
  857. span.quiet {
  858. display: none;
  859. }
  860. span.right {
  861. float: right;
  862. }
  863. .footer {
  864. padding: 50px 0 30px;
  865. }
  866. .form-row {
  867. margin: 10px 0;
  868. }
  869. .form-row.checkbox {
  870. font-size: 0.85em;
  871. }
  872. .form-row.texts:first-of-type {
  873. margin-top: 30px;
  874. }
  875. .form-row.texts + .form-row:not(.texts) {
  876. margin-top: 30px;
  877. }
  878. .checkbox-field input {
  879. margin-right: 10px;
  880. }
  881. /*===== Wordpress =====*/
  882. @media (max-width: 768px) {
  883. article.single {
  884. background: #fff;
  885. padding: 10px;
  886. }
  887. }
  888. @media (min-width: 768px) {
  889. }
  890. @media (min-width: 992px) {
  891. }
  892. @media (min-width: 1200px) {
  893. }
  894. @media (min-width: 1310px) {
  895. }
  896. #content {
  897. margin-bottom: 36px;
  898. margin-top: 100px;
  899. }
  900. #content,
  901. #content input,
  902. #content textarea {
  903. color: #333;
  904. font-size: 16px;
  905. line-height: 24px;
  906. }
  907. #content p,
  908. #content ul,
  909. #content ol,
  910. #content dd,
  911. #content pre,
  912. #content hr {
  913. margin-bottom: 24px;
  914. }
  915. #content ul ul,
  916. #content ol ol,
  917. #content ul ol,
  918. #content ol ul {
  919. margin-bottom: 0;
  920. }
  921. #content pre,
  922. #content kbd,
  923. #content tt,
  924. #content var {
  925. font-size: 15px;
  926. line-height: 21px;
  927. }
  928. #content code {
  929. font-size: 13px;
  930. }
  931. #content dt,
  932. #content th {
  933. color: #000;
  934. }
  935. #content h1,
  936. #content h2,
  937. #content h3,
  938. #content h4,
  939. #content h5,
  940. #content h6 {
  941. color: #000;
  942. line-height: 1.5em;
  943. margin: 0 0 20px 0;
  944. }
  945. #content table {
  946. border: 1px solid #e7e7e7;
  947. margin: 0 -1px 24px 0;
  948. text-align: left;
  949. width: 100%;
  950. }
  951. #content tr th,
  952. #content thead th {
  953. color: #888;
  954. font-size: 12px;
  955. font-weight: bold;
  956. line-height: 18px;
  957. padding: 9px 24px;
  958. }
  959. #content tr td {
  960. border-top: 1px solid #e7e7e7;
  961. padding: 6px 24px;
  962. }
  963. #content tr.odd td {
  964. background: #f2f7fc;
  965. }
  966. .hentry {
  967. margin: 0 0 30px 0;
  968. }
  969. .reserved-gallery {
  970. float: left;
  971. padding: 5px;
  972. }
  973. .home .sticky {
  974. background: #f2f7fc;
  975. border-top: 4px solid #000;
  976. margin-left: -20px;
  977. margin-right: -20px;
  978. padding: 18px 20px;
  979. }
  980. .single .hentry {
  981. margin: 0 0 36px 0;
  982. }
  983. .page-title {
  984. color: #000;
  985. font-size: 14px;
  986. font-weight: bold;
  987. margin: 0 0 36px 0;
  988. }
  989. .page-title span {
  990. color: #333;
  991. font-size: 16px;
  992. font-style: italic;
  993. font-weight: normal;
  994. }
  995. .entry-caption-parent .page-title span {
  996. color: #777;
  997. font-size: 12px;
  998. font-style: italic;
  999. font-weight: normal;
  1000. }
  1001. .nav-previous span.meta-nav {
  1002. color: #888;
  1003. font-size: 12px;
  1004. font-style: italic;
  1005. font-weight: normal;
  1006. }
  1007. .nav-next span.meta-nav {
  1008. color: #888;
  1009. font-size: 12px;
  1010. font-style: italic;
  1011. font-weight: normal;
  1012. }
  1013. .page-title a:link,
  1014. .page-title a:visited {
  1015. color: #888;
  1016. text-decoration: none;
  1017. }
  1018. .page-title a:active,
  1019. .page-title a:hover {
  1020. color: #373339;
  1021. }
  1022. #content .entry-title {
  1023. color: #000;
  1024. font-size: 24px;
  1025. line-height: 1.3em;
  1026. margin-bottom: 20px;
  1027. }
  1028. h2.entry-title {
  1029. color: #999;
  1030. }
  1031. .entry-title a:link,
  1032. .entry-title a:visited {
  1033. color: #000;
  1034. text-decoration: none;
  1035. }
  1036. .entry-title a:active,
  1037. .entry-title a:hover {
  1038. color: #1db;
  1039. }
  1040. .entry-meta {
  1041. color: #888;
  1042. font-size: 12px;
  1043. }
  1044. .entry-meta-attachment {
  1045. float: right;
  1046. color: #888;
  1047. font: 11px "Courier New", Courier, mono;
  1048. }
  1049. .entry-meta abbr,
  1050. .entry-utility abbr {
  1051. border: none;
  1052. }
  1053. .entry-meta abbr:hover,
  1054. .entry-utility abbr:hover {
  1055. border-bottom: 1px dotted #666;
  1056. }
  1057. .entry-content,
  1058. .entry-summary {
  1059. clear: both;
  1060. padding: 18px 0 20px;
  1061. }
  1062. .entry-guestbook {
  1063. clear: both;
  1064. padding: 3px 0 10px 0;
  1065. }
  1066. .entry-content h5 {
  1067. font: 14px "Courier New", Courier, mono;
  1068. }
  1069. .signature {
  1070. font: 16px "Courier New", Courier, mono;
  1071. float: right;
  1072. margin: 10px 150px 40px 0px;
  1073. }
  1074. #inside h3 {
  1075. font: 16px "Courier New", Courier, mono;
  1076. line-height: 10px;
  1077. margin: 0 0 10px 0;
  1078. }
  1079. #inside p {
  1080. margin: 0 0 10px 0;
  1081. line-height: 20px;
  1082. }
  1083. #content .entry-summary p:last-child {
  1084. margin-bottom: 12px;
  1085. }
  1086. .entry-content fieldset {
  1087. border: 1px solid #e7e7e7;
  1088. margin: 0 0 24px 0;
  1089. padding: 24px;
  1090. }
  1091. .entry-content fieldset legend {
  1092. background: #fff;
  1093. color: #000;
  1094. font-weight: bold;
  1095. padding: 0 24px;
  1096. }
  1097. .entry-content input {
  1098. margin: 0 0 24px 0;
  1099. }
  1100. .entry-content input.file,
  1101. .entry-content input.button {
  1102. margin-right: 24px;
  1103. }
  1104. .entry-content label {
  1105. color: #888;
  1106. font-size: 12px;
  1107. }
  1108. .entry-content select {
  1109. margin: 0 0 24px 0;
  1110. }
  1111. .entry-content sup,
  1112. .entry-content sub {
  1113. font-size: 10px;
  1114. }
  1115. .entry-content blockquote.left {
  1116. float: left;
  1117. margin-left: 0;
  1118. margin-right: 24px;
  1119. text-align: right;
  1120. width: 33%;
  1121. }
  1122. .entry-content blockquote.right {
  1123. float: right;
  1124. margin-left: 24px;
  1125. margin-right: 0;
  1126. text-align: left;
  1127. width: 33%;
  1128. }
  1129. .page-link {
  1130. color: #000;
  1131. font-weight: bold;
  1132. margin: 0 0 22px 0;
  1133. word-spacing: 0.5em;
  1134. }
  1135. .page-link a:link,
  1136. .page-link a:visited {
  1137. background: #f1f1f1;
  1138. color: #333;
  1139. font-weight: normal;
  1140. padding: 0.5em 0.75em;
  1141. text-decoration: none;
  1142. }
  1143. .home .sticky .page-link a {
  1144. background: #d9e8f7;
  1145. }
  1146. .page-link a:active,
  1147. .page-link a:hover {
  1148. color: #ff4b33;
  1149. }
  1150. body.page .edit-link {
  1151. clear: both;
  1152. display: block;
  1153. }
  1154. #entry-author-info {
  1155. background: #f2f7fc;
  1156. border-top: 4px solid #000;
  1157. clear: both;
  1158. font-size: 14px;
  1159. line-height: 20px;
  1160. margin: 24px 0;
  1161. overflow: hidden;
  1162. padding: 18px 20px;
  1163. }
  1164. #entry-author-info #author-avatar {
  1165. background: #fff;
  1166. border: 1px solid #e7e7e7;
  1167. float: left;
  1168. height: 60px;
  1169. margin: 0 -104px 0 0;
  1170. padding: 11px;
  1171. }
  1172. #entry-author-info #author-description {
  1173. float: left;
  1174. margin: 0 0 0 104px;
  1175. }
  1176. #entry-author-info h2 {
  1177. color: #000;
  1178. font-size: 100%;
  1179. font-weight: bold;
  1180. margin-bottom: 0;
  1181. }
  1182. .entry-utility {
  1183. clear: both;
  1184. color: #888;
  1185. font-size: 12px;
  1186. line-height: 18px;
  1187. }
  1188. .entry-meta a,
  1189. .entry-utility a {
  1190. color: #888;
  1191. }
  1192. .entry-meta a:hover,
  1193. .entry-utility a:hover {
  1194. color: #ff4b33;
  1195. }
  1196. #content .video-player {
  1197. padding: 0;
  1198. }
  1199. .date {
  1200. float: right;
  1201. margin: 0px 0 20px 50px;
  1202. color: #777;
  1203. font: 14px/18px "Courier New", Courier, mono;
  1204. }
  1205. /*============================================
  1206. Meta
  1207. ==============================================*/
  1208. .meta {
  1209. font-size: 11px;
  1210. }
  1211. .categories-fb {
  1212. text-align: right;
  1213. }
  1214. span.fb {
  1215. width: 16px;
  1216. height: 16px;
  1217. margin-left: 5px;
  1218. padding: 3px 4px 2px 5px;
  1219. background-image: url(img/fb1.png) ;
  1220. background-position: 0 16px;
  1221. position: relative;
  1222. -webkit-transition: all ease 0.3s;
  1223. -moz-transition: all ease 0.3s;
  1224. -o-transition: all ease 0.3s;
  1225. -ms-transition: all ease 0.3s;
  1226. transition: all ease 0.3s;
  1227. }
  1228. span.fb:hover {
  1229. background-position: 0 0;
  1230. }
  1231. /*============================================
  1232. Comments
  1233. ==============================================*/
  1234. #commentform input.error,
  1235. #commentform textarea.error {
  1236. background: #FFD2D2;
  1237. color:#000000;
  1238. }
  1239. #commentform .error {
  1240. font-size: 16px;
  1241. padding: 0 0 5px 0;
  1242. color: #FF0000;
  1243. }
  1244. .commentbubble {
  1245. font-family:"CM Type";
  1246. font-size: 13px;
  1247. color: #777;
  1248. margin: 0px 15px 0 0;
  1249. }
  1250. .comment {
  1251. padding: 10px;
  1252. }
  1253. .commentbubble a.toogle-comments {
  1254. float: right;
  1255. text-align: right;
  1256. }
  1257. .comments-area {
  1258. background: rgba(242,242,242,.7);
  1259. padding: 15px;
  1260. margin: 60px 0 0 0;
  1261. }
  1262. #content .comments-area p {
  1263. margin: 0 0 8px;
  1264. font-size: 13px;
  1265. }
  1266. #content .comments-area .reply {
  1267. margin: 5px 8px 0px;
  1268. padding: 2px 9px;
  1269. background: rgba(242,242,242,.5);
  1270. font-size: 11px;
  1271. }
  1272. .comments-title {
  1273. margin-bottom: 48px;
  1274. margin-bottom: 3.428571429rem;
  1275. font-size: 16px;
  1276. font-size: 1.142857143rem;
  1277. line-height: 1.5;
  1278. font-weight: normal;
  1279. }
  1280. .comments-area ul {
  1281. margin: 0px 0px;
  1282. list-style: none;
  1283. }
  1284. .comments-area h3 {
  1285. margin: 0 0 0;
  1286. }
  1287. .comments-meta {
  1288. font-size: 10px;
  1289. }
  1290. .comments-area article {
  1291. margin: 24px 0;
  1292. }
  1293. .comments-area article header {
  1294. margin: 0 0 48px;
  1295. overflow: hidden;
  1296. position: relative;
  1297. }
  1298. .comments-area article header img {
  1299. float: left;
  1300. padding: 0;
  1301. line-height: 0;
  1302. }
  1303. .comments-area article header cite,
  1304. .comments-area article header time {
  1305. display: block;
  1306. margin-left: 85px;
  1307. }
  1308. .comments-area article header cite {
  1309. font-style: normal;
  1310. font-size: 15px;
  1311. }
  1312. .comments-area cite b {
  1313. font-weight: normal;
  1314. }
  1315. .comments-area article header time {
  1316. text-decoration: none;
  1317. font-size: 12px;
  1318. color: #5e5e5e;
  1319. }
  1320. .comments-area article header a {
  1321. text-decoration: none;
  1322. color: #5e5e5e;
  1323. }
  1324. .comments-area article header a:hover {
  1325. color: #21759b;
  1326. }
  1327. .comments-area article header cite a {
  1328. color: #444;
  1329. }
  1330. .comments-area article header cite a:hover {
  1331. text-decoration: underline;
  1332. }
  1333. a.comment-reply-link,
  1334. a.comment-edit-link {
  1335. color: #686868;
  1336. font-size: 13px;
  1337. }
  1338. a.comment-reply-link:hover,
  1339. a.comment-edit-link:hover {
  1340. color: #21759b;
  1341. }
  1342. .commentlist .pingback {
  1343. line-height: 1.714285714;
  1344. margin-bottom: 24px;
  1345. }
  1346. li.comment.even {
  1347. background: #fff;
  1348. }
  1349. li.comment.odd {
  1350. background: #f3f3f3;
  1351. }
  1352. li.comment.thread-even {
  1353. background: #f5f5f5;
  1354. }
  1355. li.comment.thread-odd {
  1356. background: #fff;
  1357. }
  1358. .comment-meta {
  1359. font-size: 11px;
  1360. line-height: 12px;
  1361. }
  1362. .comment-meta a {
  1363. color: #777;
  1364. float: right;
  1365. }
  1366. /*====== Comment form ======*/
  1367. #respond {
  1368. margin-top: 10px;
  1369. }
  1370. #respond h3#reply-title {
  1371. margin: 0px 8px 0px;
  1372. padding: 2px 9px;
  1373. font-size: 11px;
  1374. margin: 0;
  1375. }
  1376. #respond h3#reply-title #cancel-comment-reply-link {
  1377. margin-left: 10px;
  1378. font-weight: normal;
  1379. font-size: 12px;
  1380. font-size: 0.857142857rem;
  1381. }
  1382. #respond form {
  1383. margin: 24px 0;
  1384. margin: 1.714285714rem 0;
  1385. }
  1386. #respond form p {
  1387. margin: 11px 0;
  1388. margin: 0.785714286rem 0;
  1389. }
  1390. #respond form p.logged-in-as {
  1391. margin-bottom: 24px;
  1392. margin-bottom: 1.714285714rem;
  1393. }
  1394. #respond form label {
  1395. display: block;
  1396. line-height: 1.714285714;
  1397. }
  1398. #respond form input[type="text"],
  1399. #respond form textarea {
  1400. -moz-box-sizing: border-box;
  1401. box-sizing: border-box;
  1402. font: 0.857142857rem "Courier New", Courier, mono;
  1403. line-height: 1.714285714;
  1404. padding: 10px;
  1405. padding: 0.714285714rem;
  1406. width: 100%;
  1407. }
  1408. #respond form p.form-allowed-tags {
  1409. margin: 0;
  1410. font-size: 12px;
  1411. font-size: 0.857142857rem;
  1412. line-height: 2;
  1413. color: #5e5e5e;
  1414. }
  1415. .required {
  1416. color: red;
  1417. }
  1418. /*============================================
  1419. Media
  1420. ==============================================*/
  1421. .video-container {
  1422. position: relative;
  1423. padding-bottom: 56.25%;
  1424. padding-top: 30px; height: 0; overflow: hidden;
  1425. }
  1426. .video-container iframe,
  1427. .video-container object,
  1428. .video-container embed {
  1429. position: absolute;
  1430. top: 0;
  1431. left: 0;
  1432. width: 100%;
  1433. height: 100%;
  1434. }
  1435. .category-gallery .size-thumbnail img {
  1436. border: 10px solid #f1f1f1;
  1437. margin-bottom: 0;
  1438. }
  1439. .category-gallery .gallery-thumb {
  1440. float: left;
  1441. margin-right: 20px;
  1442. margin-top: -4px;
  1443. }
  1444. .home #content .category-gallery .entry-utility {
  1445. padding-top: 4px;
  1446. }
  1447. /*===== Attachments =====*/
  1448. .single-attachment .hentry {
  1449. margin: 0px;
  1450. }
  1451. .attachment .entry-content .entry-caption {
  1452. font-size: 140%;
  1453. margin-top: 24px;
  1454. }
  1455. .entry-caption-attachment {
  1456. margin: 0px auto 0;
  1457. text-align: center;
  1458. }
  1459. #content .entry-caption-attachment h2.entry-title {
  1460. margin: 0 0 5px;
  1461. font-weight: normal;
  1462. }
  1463. #content .entry-caption-parent p.page-title {
  1464. margin: -30px 0 0 0;
  1465. font: normal 13px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  1466. }
  1467. #content .entry-caption-parent p.page-title a {
  1468. color: #555;
  1469. }
  1470. #content .entry-caption-attachment p {
  1471. font-size: 14px;
  1472. text-indent: 0px;
  1473. line-height: 15px;
  1474. margin-bottom: 0px;
  1475. }
  1476. .entry-caption-attachment h2 {
  1477. font: bold 27px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  1478. }
  1479. .attachment .entry-content .nav-previous a:before {
  1480. content: '\2190\00a0';
  1481. }
  1482. .attachment .entry-content .nav-next a:after {
  1483. content: '\00a0\2192';
  1484. }
  1485. /*===== Images ======*/
  1486. img.avatar {
  1487. width: 50px;
  1488. height: 50px;
  1489. -webkit-border-radius: 30px;
  1490. -moz-border-radius: 30px;
  1491. border-radius: 30px;
  1492. }
  1493. img.me {
  1494. height: 80px;
  1495. margin: 0 10px;
  1496. float: left;
  1497. -webkit-border-radius: 50%;
  1498. -moz-border-radius: 50%;
  1499. border-radius: 50%;
  1500. -webkit-filter: grayscale(1);
  1501. filter:grayscale(1);
  1502. }
  1503. .entry-content img {
  1504. max-width: 100%;
  1505. height: auto;
  1506. }
  1507. .img-rounded {
  1508. border-radius: 6px;
  1509. }
  1510. .img-thumbnail {
  1511. padding: 4px;
  1512. line-height: 1.42857143;
  1513. background-color: #ffffff;
  1514. border: 1px solid #dddddd;
  1515. border-radius: 4px;
  1516. -webkit-transition: all 0.2s ease-in-out;
  1517. -o-transition: all 0.2s ease-in-out;
  1518. transition: all 0.2s ease-in-out;
  1519. display: inline-block;
  1520. width: 100% \9;
  1521. max-width: 100%;
  1522. height: auto;
  1523. }
  1524. .img-circle {
  1525. border-radius: 50%;
  1526. }
  1527. #content .home img {
  1528. border: 15px solid #000;
  1529. }
  1530. #content .attachment img {
  1531. max-width: 900px;
  1532. }
  1533. #content .alignleft,
  1534. #content img.alignleft {
  1535. display: inline;
  1536. float: left;
  1537. margin-right: 24px;
  1538. margin-top: 4px;
  1539. }
  1540. #content .alignright,
  1541. #content img.alignright {
  1542. display: inline;
  1543. float: right;
  1544. margin-left: 24px;
  1545. margin-top: 4px;
  1546. }
  1547. #content .aligncenter,
  1548. #content img.aligncenter {
  1549. clear: both;
  1550. display: block;
  1551. margin-left: auto;
  1552. margin-right: auto;
  1553. }
  1554. #content img.alignleft,
  1555. #content img.alignright,
  1556. #content img.aligncenter {
  1557. margin-bottom: 12px;
  1558. }
  1559. #content .wp-caption {
  1560. background: #f1f1f1;
  1561. line-height: 18px;
  1562. margin-bottom: 20px;
  1563. padding: 4px;
  1564. text-align: center;
  1565. }
  1566. #content .wp-caption img {
  1567. margin: 5px 5px 0;
  1568. }
  1569. #content .wp-caption p.wp-caption-text {
  1570. color: #888;
  1571. font-size: 12px;
  1572. margin: 5px;
  1573. }
  1574. #content .gallery {
  1575. margin: 0 auto 18px;
  1576. }
  1577. #content .gallery .gallery-item {
  1578. float: left;
  1579. margin-top: 0;
  1580. text-align: center;
  1581. width: 33%;
  1582. }
  1583. #content .gallery img {
  1584. border: 2px solid #cfcfcf;
  1585. }
  1586. #content .gallery .gallery-caption {
  1587. color: #888;
  1588. font-size: 12px;
  1589. margin: 0 0 12px;
  1590. }
  1591. #content .gallery dl {
  1592. margin: 0;
  1593. }
  1594. #content .gallery img {
  1595. border: 10px solid #f1f1f1;
  1596. }
  1597. #content .gallery br+br {
  1598. display: none;
  1599. }
  1600. #content .attachment img {
  1601. display: block;
  1602. margin: 0 auto;
  1603. }
  1604. /*============================================
  1605. Pagination
  1606. ==============================================*/
  1607. .navigation {
  1608. color: #888;
  1609. font-size: 12px;
  1610. line-height: 18px;
  1611. overflow: hidden;
  1612. clear: both;
  1613. }
  1614. .navigation a:link,
  1615. .navigation a:visited {
  1616. color: #888;
  1617. text-decoration: none;
  1618. }
  1619. .navigation a:active,
  1620. .navigation a:hover {
  1621. color: #ff4b33;
  1622. }
  1623. .nav-previous {
  1624. float: left;
  1625. width: 50%;
  1626. margin: 0 0 15px 0;
  1627. }
  1628. .nav-next {
  1629. float: right;
  1630. text-align: right;
  1631. width: 50%;
  1632. }
  1633. #nav-above {
  1634. margin: 0 0 18px 0;
  1635. }
  1636. #nav-above {
  1637. display: none;
  1638. }
  1639. .paged #nav-above,
  1640. .single #nav-above {
  1641. display: block;
  1642. }
  1643. #nav-below {
  1644. margin: 50px 0 0px;
  1645. padding: 20px 10px 0;
  1646. border-top: 1px solid #cecece;
  1647. }
  1648. .pagination {
  1649. margin-top: 40px;
  1650. border-top: 1px solid #cecece;
  1651. padding: 20px 0 0;
  1652. }
  1653. .pagination a {
  1654. padding: 4px 5px;
  1655. color: #fff;
  1656. font-weight: bold;
  1657. font-size: 16px;
  1658. }
  1659. .pagination a:active {
  1660. padding: 4px 5px;
  1661. background: #707071;
  1662. color:#fff;
  1663. }
  1664. .pagination a:hover {
  1665. padding: 4px 5px;
  1666. background: #fff;
  1667. color: #ec0000;
  1668. }
  1669. .pagination a.next,
  1670. .pagination a.prev {
  1671. padding: 4px 7px;
  1672. color: #ec0000;
  1673. font-weight: bold;
  1674. font-size: 27px;
  1675. }
  1676. .pagination .current {
  1677. padding: 4px 5px;
  1678. background: #fff;
  1679. color: #ec0000;
  1680. font-weight: bold;
  1681. font-size: 16px;
  1682. }
  1683. /*============================================
  1684. Footer
  1685. ==============================================*/
  1686. /*============================================
  1687. Forms
  1688. ==============================================*/
  1689. .text-field {
  1690. width: 50%;
  1691. float: left;
  1692. display: block;
  1693. -webkit-box-sizing: border-box;
  1694. -moz-box-sizing: border-box;
  1695. box-sizing: border-box;
  1696. position: relative;
  1697. }
  1698. .text-field > strong {
  1699. display: block;
  1700. font-weight: bold;
  1701. color: white;
  1702. font-size: 0.85em;
  1703. margin-top: -3px;
  1704. }
  1705. .text-field > strong > i {
  1706. font-weight: normal;
  1707. font-style: italic;
  1708. font-family: playfair display, serif;
  1709. font-size: 0.9em;
  1710. opacity: 0.8;
  1711. }
  1712. .text-field .req {
  1713. position: relative;
  1714. top: 4px;
  1715. left: 4px;
  1716. color: #1a8;
  1717. opacity: 0.5;
  1718. }
  1719. .text-field [type='email'],
  1720. .text-field [type='text'] {
  1721. -webkit-box-sizing: border-box;
  1722. -moz-box-sizing: border-box;
  1723. box-sizing: border-box;
  1724. -webkit-transition: all 200ms linear;
  1725. transition: all 200ms linear;
  1726. }
  1727. .text-field [type='email']::-webkit-input-placeholder,
  1728. .text-field [type='text']::-webkit-input-placeholder {
  1729. color: rgba(250, 250, 250, 0.2);
  1730. font-weight: normal;
  1731. }
  1732. .text-field [type='email']::-moz-placeholder,
  1733. .text-field [type='text']::-moz-placeholder {
  1734. color: rgba(250, 250, 250, 0.2);
  1735. font-weight: normal;
  1736. }
  1737. .text-field [type='email']:-ms-input-placeholder,
  1738. .text-field [type='text']:-ms-input-placeholder {
  1739. color: rgba(250, 250, 250, 0.2);
  1740. font-weight: normal;
  1741. }
  1742. .text-field [type='email']::placeholder,
  1743. .text-field [type='text']::placeholder {
  1744. color: rgba(250, 250, 250, 0.2);
  1745. font-weight: normal;
  1746. }
  1747. .text-field [type='email'],
  1748. .text-field [type='text'] {
  1749. background: transparent;
  1750. border: 0;
  1751. padding: 5px 0;
  1752. border-bottom: solid 1px rgba(250, 250, 250, 0.2);
  1753. margin: 5px 5px 5px 0;
  1754. color: #1d8;
  1755. font-weight: bold;
  1756. }
  1757. .text-field [type='email']:hover,
  1758. .text-field [type='text']:hover {
  1759. border-bottom-color: rgba(250, 250, 250, 0.5);
  1760. outline: 0;
  1761. }
  1762. .text-field [type='email']:focus,
  1763. .text-field [type='text']:focus {
  1764. color: #1d8;
  1765. border-bottom-color: #1d8;
  1766. outline: 0;
  1767. }
  1768. @media (min-width: 768px) {
  1769. .text-field [type='email'],
  1770. .text-field [type='text'] {
  1771. width: 92%;
  1772. }
  1773. }
  1774. form .actions button{
  1775. margin: 20px 0;
  1776. }