2014-12-05 12:38:43 +01:00
|
|
|
body {
|
|
|
|
font-family: Verdana,Arial,sans-serif;
|
2014-12-05 17:58:52 +01:00
|
|
|
background-color: #aaa;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
#main {
|
|
|
|
width: 500px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 20px;
|
|
|
|
text-align: center;
|
2014-12-05 12:38:43 +01:00
|
|
|
}
|
|
|
|
.game-container {
|
|
|
|
cursor: default;
|
|
|
|
font-weight: bold;
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
.grid-cell {
|
|
|
|
background-color: #ddd;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 1px;
|
|
|
|
padding: 5px;
|
|
|
|
border-radius: 3px;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 30px;
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.white {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
.black {
|
|
|
|
background-color: #aaa;
|
|
|
|
}
|