12345678910111213141516171819202122232425262728293031323334353637 |
- html,
- body {
- margin: 0;
- padding: 0;
- overflow: hidden;
- height: 100%;
- /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
- font-family: 'Alice', serif;
- font-weight: normal;
- }
- canvas.webgl {
- margin: 0;
- padding: 0;
- width: 100%;
- height: 100%;
- background-color: #081828;
- outline: none;
- }
- #loading {
- position: fixed;
- width: 100%;
- height: 100vh;
- text-align: center;
- color: white;
- font-size: 48px;
- display: flex;
- align-items: center;
- justify-content: right;
- }
- #loading-inner {
- width: 50%;
- text-align: center;
- }
|