diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2020-12-30 23:13:40 +0000 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2020-12-30 23:13:40 +0000 |
| commit | 3c3322ef1a7aca3517ff94f723004fb809dec6cd (patch) | |
| tree | fd195eeedbb03cea8b25795b5e3c8fcf1a10c05c /src/main/resources/style.css | |
| parent | c05b68f786715b20d0a9aef6538141c4227642ae (diff) | |
| download | kotlin-raycaster-3c3322ef1a7aca3517ff94f723004fb809dec6cd.tar.xz kotlin-raycaster-3c3322ef1a7aca3517ff94f723004fb809dec6cd.zip | |
Add adjustable render options. Update UI
Diffstat (limited to 'src/main/resources/style.css')
| -rw-r--r-- | src/main/resources/style.css | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/main/resources/style.css b/src/main/resources/style.css new file mode 100644 index 0000000..c8b7d92 --- /dev/null +++ b/src/main/resources/style.css @@ -0,0 +1,45 @@ +body { + margin: 0.5em; + font-size: 15px; +} + +p { + margin: 0 0 0.8em; +} + +.texture-definition { + display: none; +} + +#minimap { + transform: rotate(180deg); + position: absolute; + left: 0; + top: 0; + padding: 10px; +} + +#output-wrapper { + position: relative; + width: 960px; + height: 720px; +} + +.controls { + /*max-width: 20em;*/ +} + +.slider { + margin-right: 0.5em; + width: 100%; +} + +.form-switch { + font-size: 0.9em; +} + +.btn { + height: 3em; + width: 23%; + touch-action: manipulation; +}
\ No newline at end of file |