Center game in the page
parent
1c408c250c
commit
c94e19577f
|
@ -1,6 +1,14 @@
|
||||||
body {
|
body {
|
||||||
background-color: #aaa;
|
|
||||||
font-family: Verdana,Arial,sans-serif;
|
font-family: Verdana,Arial,sans-serif;
|
||||||
|
background-color: #aaa;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
#main {
|
||||||
|
width: 500px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 20px;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
.game-container {
|
.game-container {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
@ -25,15 +33,6 @@ body {
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
|
||||||
border-collapse: collapse;
|
|
||||||
}
|
|
||||||
td {
|
|
||||||
border: 1px solid black;
|
|
||||||
height: 20px;
|
|
||||||
width: 20px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.white {
|
.white {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,5 +6,5 @@ html
|
||||||
meta name="viewport" content="initial-scale=1.0, user-scalable=yes"
|
meta name="viewport" content="initial-scale=1.0, user-scalable=yes"
|
||||||
link rel="stylesheet" media="all" href="/application.css"
|
link rel="stylesheet" media="all" href="/application.css"
|
||||||
body
|
body
|
||||||
|
div#main
|
||||||
== yield
|
== yield
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue