46 lines
597 B
CSS
46 lines
597 B
CSS
/* file: Tauri/game-reflex-poc/frontend/style.css */
|
|
/* version: 1 */
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
background: rgb(18 18 24);
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
#app {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#game {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
touch-action: none;
|
|
}
|
|
|
|
#score,
|
|
#runtime {
|
|
position: absolute;
|
|
left: 12px;
|
|
padding: 6px 8px;
|
|
border-radius: 4px;
|
|
background: rgb(0 0 0 / 55%);
|
|
color: white;
|
|
pointer-events: none;
|
|
}
|
|
|
|
#score {
|
|
top: 12px;
|
|
}
|
|
|
|
#runtime {
|
|
bottom: 12px;
|
|
font-size: 12px;
|
|
}
|