less copy protection, more size visualization
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- html {
- height: 100%;
- overflow-x: hidden;
- overflow-y: hidden;
- color: #eee;
- }
-
- body {
- background: #111;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- height: 100%;
- width: 100%;
- }
-
- .entity {
- position: absolute;
- left: 50%;
- top: 50%;
- --height: 100px;
- width: 50px;
- background-color: red;
- height: var(--height);
- text-align: center;
- }
-
- .entity.selected {
- box-shadow: 10px 10px 5px grey;
- }
-
- #world {
- min-width: 90vw;
- min-height: 80vh;
- }
-
- #menubar {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- min-height: 10vh;
- min-width: 100vw;
- background: #222;
- }
-
- .menu-item {
- font-size: 24px;
- color: #ccc;
- }
-
- #display {
- width: 100%;
- height: 100%;
- background: #333;
- }
|