diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2020-12-31 14:23:45 +0000 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2020-12-31 14:23:45 +0000 |
| commit | 29e52544d389f88a4af836ae1d82b838ed7a10c7 (patch) | |
| tree | 4c80995e8ed0f5b2bdcc55404d18ee03ed474fd1 /src/main/resources/style.css | |
| parent | 3c3322ef1a7aca3517ff94f723004fb809dec6cd (diff) | |
| download | kotlin-raycaster-29e52544d389f88a4af836ae1d82b838ed7a10c7.tar.xz kotlin-raycaster-29e52544d389f88a4af836ae1d82b838ed7a10c7.zip | |
Fix texture loading. Add log overlay
Diffstat (limited to 'src/main/resources/style.css')
| -rw-r--r-- | src/main/resources/style.css | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/main/resources/style.css b/src/main/resources/style.css index c8b7d92..42ec857 100644 --- a/src/main/resources/style.css +++ b/src/main/resources/style.css @@ -1,5 +1,4 @@ body { - margin: 0.5em; font-size: 15px; } @@ -19,14 +18,26 @@ p { padding: 10px; } +#log { + position: absolute; + left: 0; + top: 0; + padding: 10px; + margin-top: 125px; + font-family: monospace; + color: yellow; + font-size: 14px; +} + #output-wrapper { position: relative; width: 960px; height: 720px; + margin-top: 0.5em; } .controls { - /*max-width: 20em;*/ + margin-top: 0.5em; } .slider { |