14 lines
258 B
CSS
14 lines
258 B
CSS
body {
|
|
background: darkgrey;
|
|
overflow: hidden;
|
|
}
|
|
.gamepad {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
}
|