style.css 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. -moz-box-sizing: border-box;
  5. -webkit-box-sizing: border-box;
  6. box-sizing: border-box; }
  7. html {
  8. font-size: 100%;
  9. overflow-y: auto;
  10. -webkit-overflow-scrolling: touch;
  11. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  12. -webkit-text-size-adjust: 100%;
  13. -ms-text-size-adjust: 100%; }
  14. ::-moz-selection {
  15. background: #261e26;
  16. color: #fefefe;
  17. text-shadow: none; }
  18. ::selection {
  19. background: #261e26;
  20. color: #fefefe;
  21. text-shadow: none; }
  22. .clearfix:before,
  23. .clearfix:after {
  24. content: " ";
  25. display: table; }
  26. .clearfix:after {
  27. clear: both; }
  28. .clearfix {
  29. zoom: 1; }
  30. footer, header, section {
  31. display: block; }
  32. body, html {
  33. color: #424242;
  34. font-family: 'Open Sans', sans-serif;
  35. background: #fefefe;
  36. font-size: 16px;
  37. line-height: 1.5;
  38. font-weight: 400; }
  39. a {
  40. font-size: 1rem;
  41. color: #299cad;
  42. text-decoration: underline; }
  43. a:hover {
  44. color: #2eafc2;
  45. text-decoration: none;
  46. -moz-transition: all 0.2s ease-in-out;
  47. -webkit-transition: all 0.2s ease-in-out;
  48. -o-transition: all 0.2s ease-in-out;
  49. -ms-transition: all 0.2s ease-in-out;
  50. transition: all 0.2s ease-in-out; }
  51. p {
  52. text-align: left;
  53. margin-bottom: 1em;
  54. font-size: 1rem; }
  55. h1.knight {
  56. height: 122px;
  57. width: 122px;
  58. background: url("../images/knight.png") no-repeat;
  59. margin: 2em auto 0.5em auto; }
  60. h2 {
  61. font-family: 'Cherry Swash';
  62. font-weight: 400;
  63. font-size: 2rem;
  64. text-align: center;
  65. color: #423443;
  66. margin-bottom: 0.5em; }
  67. h3 {
  68. font-weight: 600;
  69. font-size: 1.5rem;
  70. margin: 1em 0 0.5em 0;
  71. color: #503f51; }
  72. .alpha {
  73. font-size: 1.125rem; }
  74. .center {
  75. text-align: center !important; }
  76. .margin-fifty {
  77. margin: 50px 0; }
  78. .last-origin {
  79. background: #8cd8e4 !important; }
  80. .last-target {
  81. background: #77d1df !important; }
  82. .about-in-play {
  83. margin-right: 1em;
  84. line-height: 50px;
  85. float: right !important; }
  86. .fork {
  87. float: left;
  88. width: 149px;
  89. height: 149px;
  90. background: url("../images/forkme.png") no-repeat;
  91. position: absolute; }
  92. header {
  93. margin: 0 auto;
  94. max-width: 800px;
  95. width: 100%;
  96. height: 50px; }
  97. #container_wrapper {
  98. max-width: 960px;
  99. width: 100%;
  100. height: auto;
  101. padding: 1em 2em;
  102. margin: 0 auto;
  103. clear: both; }
  104. #container {
  105. width: 100%;
  106. min-height: 600px;
  107. margin: 0px 0px 20px 0px;
  108. float: left; }
  109. #form {
  110. width: 100%;
  111. height: 150px;
  112. margin: 0 auto; }
  113. input, button {
  114. font-family: 'Open Sans'; }
  115. input.game_link {
  116. width: 80%;
  117. height: 50px;
  118. line-height: 50px;
  119. font-size: 1.125rem;
  120. color: #fff;
  121. border: 0;
  122. border-bottom: 2px solid #2b222c;
  123. border-left: 4px solid #2eafc2;
  124. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  125. background: #423443;
  126. padding: 0 1em;
  127. float: left;
  128. border-radius: 2px;
  129. box-shadow: inset 0 -2px #2b222c; }
  130. .game_link:hover {
  131. background: #4a3b4c;
  132. border-bottom: 2px solid #3a2d3a;
  133. box-shadow: inset 0 -2px #3a2d3a;
  134. -moz-transition: all 0.2s ease-in-out;
  135. -webkit-transition: all 0.2s ease-in-out;
  136. -o-transition: all 0.2s ease-in-out;
  137. -ms-transition: all 0.2s ease-in-out;
  138. transition: all 0.2s ease-in-out; }
  139. .game_link:focus {
  140. color: #eee; }
  141. .button {
  142. width: 15%;
  143. height: 50px;
  144. display: block;
  145. font-size: 1.125rem;
  146. border-radius: 2px;
  147. border: 0;
  148. border-bottom: 2px solid #299cad;
  149. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  150. background: #2eafc2;
  151. color: white;
  152. cursor: pointer;
  153. float: right;
  154. box-shadow: inset 0 -2px #299cad;
  155. position: relative; }
  156. .button:hover {
  157. background: #39bdd0;
  158. border-bottom: 2px solid #2ca8ba;
  159. box-shadow: inset 0 -2px #2ca8ba;
  160. -moz-transition: all 0.2s ease-in-out;
  161. -webkit-transition: all 0.2s ease-in-out;
  162. -o-transition: all 0.2s ease-in-out;
  163. -ms-transition: all 0.2s ease-in-out;
  164. transition: all 0.2s ease-in-out; }
  165. .button:active {
  166. top: 1px; }
  167. a.button {
  168. width: 120px;
  169. line-height: 46px;
  170. text-align: center;
  171. text-decoration: none; }
  172. a.button:hover {
  173. color: white; }
  174. p#waiting {
  175. font-family: 'Cherry Swash';
  176. font-size: 1.275rem;
  177. color: #bb211e;
  178. width: 100%;
  179. text-align: center;
  180. margin: 15px 0px 0px 0px;
  181. display: none;
  182. float: left; }
  183. footer {
  184. font-size: 1rem;
  185. width: 100%;
  186. line-height: 2em;
  187. text-align: center;
  188. background: #dad7d2;
  189. border-bottom: 4px solid #c3beb6;
  190. box-shadow: inset 0 -4px #c3beb6; }
  191. footer a {
  192. color: #6d665a; }
  193. footer a:hover {
  194. color: #7b7365; }
  195. #footer {
  196. margin: 0 auto;
  197. max-width: 960px;
  198. padding: 3em 2em 1em 2em; }
  199. #sounds_label {
  200. width: 800px;
  201. height: 30px;
  202. line-height: 30px;
  203. display: block;
  204. margin: 0px 0px 5px 0px;
  205. float: left; }
  206. /* Chessboard */
  207. #board_moves_wrapper {
  208. width: 100%;
  209. max-width: 800px;
  210. min-height: 600px;
  211. margin: 0 auto; }
  212. table#moves {
  213. overflow-x: hidden;
  214. overflow-y: auto;
  215. width: 270px;
  216. height: 518px;
  217. background: #e6e3e0;
  218. box-shadow: inset 0 -4px #dad7d2;
  219. margin-left: 10px;
  220. border-radius: 2px;
  221. border-bottom: 4px solid #dad7d2;
  222. display: block;
  223. float: left; }
  224. #moves thead {
  225. font-family: 'Cherry Swash';
  226. width: 270px;
  227. height: 3em;
  228. line-height: 3em;
  229. font-size: 1.225rem;
  230. color: #423443;
  231. float: left;
  232. text-align: center; }
  233. #moves thead th, #moves thead tr {
  234. width: 100%;
  235. text-align: center;
  236. float: left; }
  237. #moves tbody tr {
  238. width: 270px;
  239. float: left; }
  240. #moves tbody tr td {
  241. width: 105px;
  242. text-align: left;
  243. line-height: 20px;
  244. margin: 0 15px;
  245. float: left; }
  246. #board_wrapper {
  247. float: left; }
  248. .chess_board {
  249. border: 8px solid #5e4a60;
  250. border-radius: 2px;
  251. width: 500px;
  252. height: 500px;
  253. float: left; }
  254. .chess_board tr {
  255. width: 500px;
  256. height: 62.5px;
  257. float: left;
  258. display: block; }
  259. .chess_board tr td {
  260. width: 62.5px;
  261. height: 62.5px;
  262. line-height: 62.5px;
  263. text-align: center;
  264. background: #fefefe;
  265. display: block;
  266. float: left; }
  267. .chess_board tr td a {
  268. width: 62.5px;
  269. height: 62.5px;
  270. font-size: 3.5rem;
  271. color: #424242;
  272. text-decoration: none;
  273. display: block; }
  274. .chess_board tr:nth-child(odd) td:nth-child(even),
  275. .chess_board tr:nth-child(even) td:nth-child(odd) {
  276. background: #dad7d2; }
  277. span.feedback {
  278. color: #424242;
  279. line-height: 28px;
  280. text-indent: 28px;
  281. margin-top: 1em;
  282. display: block;
  283. clear: left;
  284. float: left; }
  285. .feedback-status {
  286. font-weight: bold; }
  287. span.whitefeedback {
  288. background: url("../images/whiteking.png") 0% 50% no-repeat; }
  289. span.blackfeedback {
  290. background: url("../images/blackking.png") 0% 50% no-repeat; }
  291. span.promotion {
  292. line-height: 28px;
  293. text-indent: 28px;
  294. margin-top: 1em;
  295. display: block;
  296. float: right; }
  297. .chess_board td.selected {
  298. background: #ef9e9c !important; }
  299. /* Media queries */
  300. @media only screen and (min-width: 760px) and (max-width: 900px) {
  301. header, #board_moves_wrapper {
  302. max-width: 760px; }
  303. #sounds_label {
  304. max-width: 530px; }
  305. #container_wrapper {
  306. max-width: 900px;
  307. padding: 1em 10px; }
  308. table#moves {
  309. margin-left: 0;
  310. float: right;
  311. height: 516px; }
  312. table#moves, #moves thead, #moves tbody tr {
  313. width: 200px; }
  314. #moves tbody tr td {
  315. width: 90px;
  316. margin: 0 5px; } }
  317. @media only screen and (min-width: 530px) and (max-width: 759px) {
  318. header, #board_moves_wrapper, #sounds_label {
  319. max-width: 530px; } }
  320. @media only screen and (max-width: 759px) {
  321. html {
  322. font-size: 14px; }
  323. #container_wrapper {
  324. max-width: 759px;
  325. padding: 1em 5px; }
  326. span.feedback {
  327. float: right;
  328. clear: none; }
  329. table#moves {
  330. margin-left: 0;
  331. margin-top: 0.5em;
  332. height: 258px; } }
  333. @media only screen and (max-width: 529px) {
  334. header, #board_moves_wrapper, #sounds_label {
  335. max-width: 470px; }
  336. input.game_link {
  337. font-size: 1rem; }
  338. #container_wrapper {
  339. max-width: 529px;
  340. padding: 1em 5px; }
  341. .chess_board {
  342. border: 4px solid #5e4a60;
  343. width: 456px;
  344. height: 456px; }
  345. .chess_board tr {
  346. width: 456px;
  347. height: 57px; }
  348. .chess_board tr td {
  349. width: 57px;
  350. height: 57px;
  351. line-height: 57px; }
  352. .chess_board tr td a {
  353. width: 57px;
  354. height: 57px;
  355. font-size: 3.5rem; } }