36 lines
578 B
CSS
36 lines
578 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
background: transparent;
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
}
|
|
|
|
/* Zone de déplacement : bandeau haut uniquement (évite d'absorber
|
|
les clics/right-clicks sur le reste de la fenêtre) */
|
|
body::before {
|
|
content: '';
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 40px;
|
|
-webkit-app-region: drag;
|
|
z-index: 10;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
canvas {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
cursor: default;
|
|
}
|