blob: 71a4afc8210cfef91739b0f6b894ffa11e1732eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
body {
margin: 0;
background-color: #111111;
font-family: calibri;
}
h1 {
font-weight: bold;
background-color: #225522;
min-width: 500px;
color: white;
margin: 0;
padding-top: 20px;
padding-bottom: 20px;
text-align: center;
}
#game {
margin-left: auto;
margin-right: auto;
border-top: 10px dashed #222222;
border-bottom: 10px dashed #222222;
width: 500px;
height: 500px;
}
|