style.css 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  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: 17px;
  52. color: #333;
  53. }
  54. a {
  55. color: #e22c29;
  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. h3 {
  83. font-size: 22px;
  84. color: #666;
  85. margin: 10px 0;
  86. margin-top: 40px;
  87. }
  88. #header {
  89. width: 900px;
  90. text-align: center;
  91. margin: 0 auto;
  92. padding: 80px;
  93. padding-bottom: 60px;
  94. }
  95. #header .logo {
  96. margin-bottom: -30px;
  97. margin-right: 20px;
  98. }
  99. #header #links {
  100. margin-top: 50px;
  101. }
  102. #social {
  103. position: fixed;
  104. top: 6px;
  105. right: 10px;
  106. z-index: 10;
  107. }
  108. #links a {
  109. opacity: 0.6;
  110. transition: all .5s;
  111. -webkit-transition: all .5s;
  112. -moz-transition: all .5s;
  113. -o-transition: all .5s;
  114. -ms-transition: all .5s;
  115. }
  116. #links a:hover {
  117. opacity: 1;
  118. }
  119. #links a img {
  120. height: 80px;
  121. }
  122. #header .main {
  123. display: inline-block;
  124. text-align: left;
  125. }
  126. #header h1 {
  127. text-align: left;
  128. font-family: Georgia, serif;
  129. font-size: 80px;
  130. margin: 10px 0;
  131. color: #000;
  132. }
  133. #header h2 {
  134. text-align: left;
  135. font-family: Arapey;
  136. font-size: 30px;
  137. font-style: italic;
  138. color: #333;
  139. margin: 10px 0;
  140. border-bottom: 0 none;
  141. }
  142. #tabs {
  143. position: fixed;
  144. top: 0;
  145. left: 0;
  146. right: 0;
  147. list-style: none;
  148. text-align: center;
  149. padding: 5px;
  150. background: #fff;
  151. font-size: 13px;
  152. border-bottom: 2px solid #5a3808;
  153. box-shadow: 0 0 2px 2px #999;
  154. }
  155. #tabs li {
  156. display: inline;
  157. }
  158. #tabs li a {
  159. padding: 5px 10px;
  160. display: inline-block;
  161. text-decoration: none;
  162. border-radius: 20px;
  163. color: #d27324;
  164. border: 1px solid transparent;
  165. }
  166. #tabs li a:hover {
  167. background: #faa732;
  168. color: white;
  169. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  170. box-shadow: rgba(255, 255, 255, 0.2) 0px 1px 0px 0px inset, rgba(0, 0, 0, 0.0470588) 0px 1px 2px 0px;
  171. background-image: -webkit-linear-gradient(top, rgb(251, 180, 80), rgb(248, 148, 6));
  172. background-image: -moz-linear-gradient(top, rgb(251, 180, 80), rgb(248, 148, 6));
  173. background-image: -o-linear-gradient(top, rgb(251, 180, 80), rgb(248, 148, 6));
  174. background-image: -ms-linear-gradient(top, rgb(251, 180, 80), rgb(248, 148, 6));
  175. background-image: linear-gradient(top, rgb(251, 180, 80), rgb(248, 148, 6));
  176. border-color: rgba(0, 0, 0, 0.0980392);
  177. border: 1px solid #faa732;
  178. }
  179. .teaser {
  180. padding: 20px;
  181. background: white;
  182. border-top: 2px solid #5a3808;
  183. border-bottom: 2px solid #5a3808;
  184. }
  185. .teaser .main {
  186. width: 900px;
  187. margin: 0 auto;
  188. }
  189. .teaser .main h2 {
  190. border: 0 none;
  191. padding-bottom: 0;
  192. }
  193. .teaser p {
  194. font-family: Georgia, serif;
  195. line-height: 1.5em;
  196. font-size: 16px;
  197. color: #666;
  198. margin: 10px 0;
  199. }
  200. .teaser p.try {
  201. text-align: center;
  202. }
  203. .teaser p.try button {
  204. box-shadow: rgba(255, 255, 255, 0.2) 0px 1px 0px 0px inset, rgba(0, 0, 0, 0.0470588) 0px 1px 2px 0px;
  205. border: 1px solid #333;
  206. padding: 10px 20px;
  207. border-radius: 8px;
  208. font-size: 22px;
  209. background-color: rgb(81, 163, 81);
  210. background-image: -webkit-linear-gradient(top, rgb(98, 196, 98), rgb(81, 163, 81));
  211. color: #fff;
  212. text-shadow: rgba(0, 0, 0, 0.247059) 0px -1px 0px;
  213. cursor: pointer;
  214. }
  215. .teaser p.try button:hover {
  216. background-image: none;
  217. }
  218. span.info {
  219. font-style: italic;
  220. background: lightyellow;
  221. margin: 10px;
  222. display: inline-block;
  223. }
  224. .box {
  225. width: 900px;
  226. margin: 50px auto;
  227. line-height: 1.5em;
  228. }
  229. .box dt {
  230. float: left;
  231. width: 300px;
  232. font-style: italic;
  233. font-family: Georgia, serif;
  234. font-size: 18px;
  235. }
  236. .box dt:before {
  237. content: "★";
  238. padding-right: 10px;
  239. font-size: 12px;
  240. }
  241. .box dd {
  242. display: inline-block;
  243. width: 500px;
  244. margin-bottom: 30px;
  245. }
  246. #footer {
  247. font-size: 12px;
  248. text-align: center;
  249. }
  250. #footer .main {
  251. width: 900px;
  252. margin: 0 auto;
  253. }
  254. .box li {}
  255. .box li:before {
  256. content: "★";
  257. padding-right: 10px;
  258. font-size: 12px;
  259. }