blob: 54682d025d546563cdcddc8e6c3c4ce97591099b (
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
26
27
28
29
30
31
32
33
|
body{
text-align: center;
background-color: #e0dbcd;
}
div.gameboy{
padding: 10px;
border-radius: 10px;
display: inline-block;
background-color: #a89f94;
}
img.screen{
border: 10px solid #2b2b26;
border-radius: 10px;
width: 320px;
height: 288px;
}
table{
margin-left: auto;
margin-right: auto;
}
table.controls{
max-width: 320px;
height: auto;
}
.controls input, img{
height: 35px;
width: auto;
}
|