mirror of
https://github.com/esimov/pigo-wasm-demos.git
synced 2025-12-24 12:47:56 +08:00
30 lines
439 B
CSS
30 lines
439 B
CSS
html, body {
|
|
background: #000;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#canvas {
|
|
position: absolute;
|
|
left: 50%; top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
#wrapper {
|
|
position: absolute;
|
|
width: 640px; height: 480px;
|
|
left: 50%; top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
#snapshot {
|
|
display: none;
|
|
position: absolute;
|
|
width: 80px;
|
|
height: 40px;
|
|
opacity: 0.8;
|
|
right: 5%;
|
|
top: 10%;
|
|
z-index: 99;
|
|
transform: translate(-50%, -50%);
|
|
} |