diff --git a/index.html b/index.html index 3eb2b4f..c3861b0 100644 --- a/index.html +++ b/index.html @@ -41,6 +41,37 @@ .hidden { display: none; } + + #gameCanvas { + border: 1px solid #333; + background: #000; + } + + .loader { + width: 48px; + height: 48px; + border: 5px solid #fff; + border-bottom-color: transparent; + border-radius: 50%; + display: inline-block; + box-sizing: border-box; + animation: rotation 1s linear infinite; + margin-bottom: 15px; + } + + @keyframes rotation { + 0% { transform: rotate(0deg); } + 100% { transform: rotate(360deg); } + } + + #loading { + text-align: center; + } + + #loading p { + font-size: 18px; + color: #aaa; + } @@ -49,31 +80,82 @@

Welkom bij I love X!

Druk op SPATIE om te beginnen

+ +