style.css 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. @charset "utf-8";
  2. /* http://meyerweb.com/eric/tools/css/reset/
  3. v2.0 | 20110126
  4. License: none (public domain)
  5. */
  6. html, body, div, span, applet, object, iframe,
  7. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  8. a, abbr, acronym, address, big, cite, code,
  9. del, dfn, em, img, ins, kbd, q, s, samp,
  10. small, strike, strong, sub, sup, tt, var,
  11. b, u, i, center,
  12. dl, dt, dd, ol, ul, li,
  13. fieldset, form, label, legend,
  14. table, caption, tbody, tfoot, thead, tr, th, td,
  15. article, aside, canvas, details, embed,
  16. figure, figcaption, footer, header, hgroup,
  17. menu, nav, output, ruby, section, summary,
  18. time, mark, audio, video {
  19. margin: 0;
  20. padding: 0;
  21. border: 0;
  22. font-size: 100%;
  23. font: inherit;
  24. vertical-align: baseline;
  25. }
  26. /* HTML5 display-role reset for older browsers */
  27. article, aside, details, figcaption, figure,
  28. footer, header, hgroup, menu, nav, section {
  29. display: block;
  30. }
  31. body {
  32. line-height: 1;
  33. }
  34. ol, ul {
  35. list-style: none;
  36. }
  37. blockquote, q {
  38. quotes: none;
  39. }
  40. blockquote:before, blockquote:after,
  41. q:before, q:after {
  42. content: '';
  43. content: none;
  44. }
  45. table {
  46. border-collapse: collapse;
  47. border-spacing: 0;
  48. }
  49. cite {
  50. font-style: italic;
  51. }
  52. body {
  53. background: #FAF8F1 url(../images/bg.png) repeat;
  54. font-family: Georgia, "Times New Roman", serif;
  55. font-size: 18px;
  56. color: #333;
  57. }
  58. .clear {clear: both;}
  59. a {
  60. color: #d27324;
  61. text-decoration: none;
  62. }
  63. a:hover {
  64. text-decoration: underline;
  65. }
  66. p {
  67. margin-bottom: 15px;
  68. }
  69. pre {
  70. font-family: monospace;
  71. margin: 15px 0;
  72. padding: 10px;
  73. background: white;
  74. border: 1px dashed #aaa;
  75. }
  76. h1, h2 {
  77. color: #222;
  78. font-family: Georgia;
  79. font-size: 40px;
  80. margin: 30px 0;
  81. }
  82. h2 {
  83. font-size: 32px;
  84. border-bottom: 1px solid #aaa;
  85. padding-bottom: 10px;
  86. }
  87. h2 span.info {
  88. background: none;
  89. }
  90. h3 {
  91. font-size: 22px;
  92. color: #666;
  93. margin: 10px 0;
  94. margin-top: 40px;
  95. }
  96. #header {
  97. width: 900px;
  98. text-align: center;
  99. margin: 0 auto;
  100. padding: 80px;
  101. padding-bottom: 60px;
  102. }
  103. #header .logo {
  104. margin-bottom: -30px;
  105. margin-right: 20px;
  106. }
  107. #header #links {
  108. display: none;
  109. position: absolute;
  110. top: 100px;
  111. right: 30px;
  112. }
  113. #social {
  114. position: absolute;
  115. top: 60px;
  116. right: 10px;
  117. }
  118. #links a {
  119. opacity: 0.6;
  120. transition: all .5s;
  121. -webkit-transition: all .5s;
  122. -moz-transition: all .5s;
  123. -o-transition: all .5s;
  124. -ms-transition: all .5s;
  125. }
  126. #links a:hover {
  127. opacity: 1;
  128. }
  129. #links a img {
  130. height: 80px;
  131. }
  132. #header .main {
  133. display: inline-block;
  134. text-align: left;
  135. }
  136. #header h1 {
  137. text-align: left;
  138. font-family: Georgia, serif;
  139. font-size: 80px;
  140. margin: 10px 0;
  141. color: #000;
  142. }
  143. #header h2 {
  144. text-align: left;
  145. font-family: Arapey;
  146. font-size: 30px;
  147. font-style: italic;
  148. color: #333;
  149. margin: 10px 0;
  150. border-bottom: 0 none;
  151. }
  152. #tabs {
  153. position: fixed;
  154. top: 0;
  155. left: 0;
  156. right: 0;
  157. list-style: none;
  158. text-align: center;
  159. padding: 5px;
  160. background: #333;
  161. font-size: 13px;
  162. box-shadow: 0 -20px 50px 20px rgba(0,0,0,0.6);
  163. font-family: "Open Sans", "Helvetica Neue", Arial, sans;
  164. text-transform: uppercase;
  165. letter-spacing: .1em;
  166. }
  167. #tabs li {
  168. display: inline;
  169. }
  170. #tabs li a {
  171. padding: 5px 10px;
  172. display: inline-block;
  173. text-decoration: none;
  174. border-radius: 20px;
  175. color: #d27324;
  176. border: 1px solid transparent;
  177. }
  178. #tabs li a:hover {
  179. color: rgb(255, 177, 111);
  180. }
  181. .teaser {
  182. background: white;
  183. border-top: 3px solid #999;
  184. border-bottom: 3px solid #999;
  185. }
  186. .teaser .main {
  187. width: 900px;
  188. margin: 40px auto;
  189. }
  190. .teaser .main h2 {
  191. border: 0 none;
  192. margin-top: -10px;
  193. padding-bottom: 0;
  194. }
  195. .teaser p {
  196. font-family: Georgia, serif;
  197. line-height: 1.5em;
  198. font-size: 16px;
  199. color: #666;
  200. margin: 0;
  201. }
  202. .teaser p.try {
  203. text-align: center;
  204. margin: 30px 0;
  205. }
  206. .teaser p.try button {
  207. box-shadow: rgba(255, 255, 255, 0.2) 0px 1px 0px 0px inset, rgba(0, 0, 0, 0.0470588) 0px 1px 2px 0px;
  208. border: 1px solid #333;
  209. padding: 10px 20px;
  210. border-radius: 8px;
  211. font-size: 22px;
  212. background-color: rgb(81, 163, 81);
  213. background-image: -webkit-linear-gradient(top, rgb(98, 196, 98), rgb(81, 163, 81));
  214. color: #fff;
  215. text-shadow: rgba(0, 0, 0, 0.247059) 0px -1px 0px;
  216. cursor: pointer;
  217. }
  218. .teaser p.try button:hover {
  219. background-image: none;
  220. }
  221. .column {
  222. width: 400px;
  223. float: left;
  224. margin-right: 20px;
  225. }
  226. span.info {
  227. font-style: italic;
  228. background: lightyellow;
  229. margin: 10px;
  230. display: inline-block;
  231. }
  232. .box {
  233. width: 900px;
  234. margin: 50px auto;
  235. line-height: 1.5em;
  236. }
  237. .box dt {
  238. float: left;
  239. width: 300px;
  240. font-style: italic;
  241. font-family: Georgia, serif;
  242. font-size: 18px;
  243. }
  244. .box dt:before {
  245. content: "★";
  246. font-style: normal;
  247. padding-right: 10px;
  248. font-size: 12px;
  249. }
  250. .box dd {
  251. display: inline-block;
  252. width: 500px;
  253. margin-bottom: 30px;
  254. }
  255. .quip {
  256. font-size: smaller;
  257. text-align: center;
  258. margin: 50px auto;
  259. width: 600px;
  260. line-height: 1.2;
  261. }
  262. #footer {
  263. font-size: 12px;
  264. text-align: center;
  265. }
  266. #footer .main {
  267. width: 900px;
  268. margin: 0 auto;
  269. }
  270. .box li {}
  271. .box li:before {
  272. content: "★";
  273. font-style: normal;
  274. padding-right: 10px;
  275. font-size: 12px;
  276. }