style.css 5.0 KB

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