TinTin++ setup for Aardwolf MUD
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

425 lines
7.4 KiB

  1. /*******************************************************************************
  2. Slate Theme for GitHub Pages
  3. by Jason Costello, @jsncostello
  4. *******************************************************************************/
  5. @import url(pygment_trac.css);
  6. /*******************************************************************************
  7. MeyerWeb Reset
  8. *******************************************************************************/
  9. html, body, div, span, applet, object, iframe,
  10. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  11. a, abbr, acronym, address, big, cite, code,
  12. del, dfn, em, img, ins, kbd, q, s, samp,
  13. small, strike, strong, sub, sup, tt, var,
  14. b, u, i, center,
  15. dl, dt, dd, ol, ul, li,
  16. fieldset, form, label, legend,
  17. table, caption, tbody, tfoot, thead, tr, th, td,
  18. article, aside, canvas, details, embed,
  19. figure, figcaption, footer, header, hgroup,
  20. menu, nav, output, ruby, section, summary,
  21. time, mark, audio, video {
  22. margin: 0;
  23. padding: 0;
  24. border: 0;
  25. font: inherit;
  26. vertical-align: baseline;
  27. }
  28. /* HTML5 display-role reset for older browsers */
  29. article, aside, details, figcaption, figure,
  30. footer, header, hgroup, menu, nav, section {
  31. display: block;
  32. }
  33. ol, ul {
  34. list-style: none;
  35. }
  36. table {
  37. border-collapse: collapse;
  38. border-spacing: 0;
  39. }
  40. /*******************************************************************************
  41. Theme Styles
  42. *******************************************************************************/
  43. body {
  44. box-sizing: border-box;
  45. color:#373737;
  46. background: #212121;
  47. font-size: 16px;
  48. font-family: 'Myriad Pro', Calibri, Helvetica, Arial, sans-serif;
  49. line-height: 1.5;
  50. -webkit-font-smoothing: antialiased;
  51. }
  52. h1, h2, h3, h4, h5, h6 {
  53. margin: 10px 0;
  54. font-weight: 700;
  55. color:#222222;
  56. font-family: 'Lucida Grande', 'Calibri', Helvetica, Arial, sans-serif;
  57. letter-spacing: -1px;
  58. }
  59. h1 {
  60. font-size: 36px;
  61. font-weight: 700;
  62. }
  63. h2 {
  64. padding-bottom: 10px;
  65. font-size: 32px;
  66. background: url('../images/bg_hr.png') repeat-x bottom;
  67. }
  68. h3 {
  69. font-size: 24px;
  70. }
  71. h4 {
  72. font-size: 21px;
  73. }
  74. h5 {
  75. font-size: 18px;
  76. }
  77. h6 {
  78. font-size: 16px;
  79. }
  80. p {
  81. margin: 10px 0 15px 0;
  82. }
  83. footer p {
  84. color: #f2f2f2;
  85. }
  86. a {
  87. text-decoration: none;
  88. color: #007edf;
  89. text-shadow: none;
  90. transition: color 0.5s ease;
  91. transition: text-shadow 0.5s ease;
  92. -webkit-transition: color 0.5s ease;
  93. -webkit-transition: text-shadow 0.5s ease;
  94. -moz-transition: color 0.5s ease;
  95. -moz-transition: text-shadow 0.5s ease;
  96. -o-transition: color 0.5s ease;
  97. -o-transition: text-shadow 0.5s ease;
  98. -ms-transition: color 0.5s ease;
  99. -ms-transition: text-shadow 0.5s ease;
  100. }
  101. a:hover, a:focus {text-decoration: underline;}
  102. footer a {
  103. color: #F2F2F2;
  104. text-decoration: underline;
  105. }
  106. em {
  107. font-style: italic;
  108. }
  109. strong {
  110. font-weight: bold;
  111. }
  112. img {
  113. position: relative;
  114. margin: 0 auto;
  115. max-width: 739px;
  116. padding: 5px;
  117. margin: 10px 0 10px 0;
  118. border: 1px solid #ebebeb;
  119. box-shadow: 0 0 5px #ebebeb;
  120. -webkit-box-shadow: 0 0 5px #ebebeb;
  121. -moz-box-shadow: 0 0 5px #ebebeb;
  122. -o-box-shadow: 0 0 5px #ebebeb;
  123. -ms-box-shadow: 0 0 5px #ebebeb;
  124. }
  125. p img {
  126. display: inline;
  127. margin: 0;
  128. padding: 0;
  129. vertical-align: middle;
  130. text-align: center;
  131. border: none;
  132. }
  133. pre, code {
  134. width: 100%;
  135. color: #222;
  136. background-color: #fff;
  137. font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
  138. font-size: 14px;
  139. border-radius: 2px;
  140. -moz-border-radius: 2px;
  141. -webkit-border-radius: 2px;
  142. }
  143. pre {
  144. width: 100%;
  145. padding: 10px;
  146. box-shadow: 0 0 10px rgba(0,0,0,.1);
  147. overflow: auto;
  148. }
  149. code {
  150. padding: 3px;
  151. margin: 0 3px;
  152. box-shadow: 0 0 10px rgba(0,0,0,.1);
  153. }
  154. pre code {
  155. display: block;
  156. box-shadow: none;
  157. }
  158. blockquote {
  159. color: #666;
  160. margin-bottom: 20px;
  161. padding: 0 0 0 20px;
  162. border-left: 3px solid #bbb;
  163. }
  164. ul, ol, dl {
  165. margin-bottom: 15px
  166. }
  167. ul {
  168. list-style-position: inside;
  169. list-style: disc;
  170. padding-left: 20px;
  171. }
  172. ol {
  173. list-style-position: inside;
  174. list-style: decimal;
  175. padding-left: 20px;
  176. }
  177. dl dt {
  178. font-weight: bold;
  179. }
  180. dl dd {
  181. padding-left: 20px;
  182. font-style: italic;
  183. }
  184. dl p {
  185. padding-left: 20px;
  186. font-style: italic;
  187. }
  188. hr {
  189. height: 1px;
  190. margin-bottom: 5px;
  191. border: none;
  192. background: url('../images/bg_hr.png') repeat-x center;
  193. }
  194. table {
  195. border: 1px solid #373737;
  196. margin-bottom: 20px;
  197. text-align: left;
  198. }
  199. th {
  200. font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  201. padding: 10px;
  202. background: #373737;
  203. color: #fff;
  204. }
  205. td {
  206. padding: 10px;
  207. border: 1px solid #373737;
  208. }
  209. form {
  210. background: #f2f2f2;
  211. padding: 20px;
  212. }
  213. /*******************************************************************************
  214. Full-Width Styles
  215. *******************************************************************************/
  216. .outer {
  217. width: 100%;
  218. }
  219. .inner {
  220. position: relative;
  221. max-width: 640px;
  222. padding: 20px 10px;
  223. margin: 0 auto;
  224. }
  225. #forkme_banner {
  226. display: block;
  227. position: absolute;
  228. top:0;
  229. right: 10px;
  230. z-index: 10;
  231. padding: 10px 50px 10px 10px;
  232. color: #fff;
  233. background: url('../images/blacktocat.png') #0090ff no-repeat 95% 50%;
  234. font-weight: 700;
  235. box-shadow: 0 0 10px rgba(0,0,0,.5);
  236. border-bottom-left-radius: 2px;
  237. border-bottom-right-radius: 2px;
  238. }
  239. #header_wrap {
  240. background: #212121;
  241. background: -moz-linear-gradient(top, #373737, #212121);
  242. background: -webkit-linear-gradient(top, #373737, #212121);
  243. background: -ms-linear-gradient(top, #373737, #212121);
  244. background: -o-linear-gradient(top, #373737, #212121);
  245. background: linear-gradient(top, #373737, #212121);
  246. }
  247. #header_wrap .inner {
  248. padding: 50px 10px 30px 10px;
  249. }
  250. #project_title {
  251. margin: 0;
  252. color: #fff;
  253. font-size: 42px;
  254. font-weight: 700;
  255. text-shadow: #111 0px 0px 10px;
  256. }
  257. #project_tagline {
  258. color: #fff;
  259. font-size: 24px;
  260. font-weight: 300;
  261. background: none;
  262. text-shadow: #111 0px 0px 10px;
  263. }
  264. #downloads {
  265. position: absolute;
  266. width: 210px;
  267. z-index: 10;
  268. bottom: -40px;
  269. right: 0;
  270. height: 70px;
  271. background: url('../images/icon_download.png') no-repeat 0% 90%;
  272. }
  273. .zip_download_link {
  274. display: block;
  275. float: right;
  276. width: 90px;
  277. height:70px;
  278. text-indent: -5000px;
  279. overflow: hidden;
  280. background: url(../images/sprite_download.png) no-repeat bottom left;
  281. }
  282. .tar_download_link {
  283. display: block;
  284. float: right;
  285. width: 90px;
  286. height:70px;
  287. text-indent: -5000px;
  288. overflow: hidden;
  289. background: url(../images/sprite_download.png) no-repeat bottom right;
  290. margin-left: 10px;
  291. }
  292. .zip_download_link:hover {
  293. background: url(../images/sprite_download.png) no-repeat top left;
  294. }
  295. .tar_download_link:hover {
  296. background: url(../images/sprite_download.png) no-repeat top right;
  297. }
  298. #main_content_wrap {
  299. background: #f2f2f2;
  300. border-top: 1px solid #111;
  301. border-bottom: 1px solid #111;
  302. }
  303. #main_content {
  304. padding-top: 40px;
  305. }
  306. #footer_wrap {
  307. background: #212121;
  308. }
  309. /*******************************************************************************
  310. Small Device Styles
  311. *******************************************************************************/
  312. @media screen and (max-width: 480px) {
  313. body {
  314. font-size:14px;
  315. }
  316. #downloads {
  317. display: none;
  318. }
  319. .inner {
  320. min-width: 320px;
  321. max-width: 480px;
  322. }
  323. #project_title {
  324. font-size: 32px;
  325. }
  326. h1 {
  327. font-size: 28px;
  328. }
  329. h2 {
  330. font-size: 24px;
  331. }
  332. h3 {
  333. font-size: 21px;
  334. }
  335. h4 {
  336. font-size: 18px;
  337. }
  338. h5 {
  339. font-size: 14px;
  340. }
  341. h6 {
  342. font-size: 12px;
  343. }
  344. code, pre {
  345. min-width: 320px;
  346. max-width: 480px;
  347. font-size: 11px;
  348. }
  349. }