summary refs log tree commit diff
path: root/assets/shaders/vertex.glsl
AgeCommit message (Expand)Author
2023-07-09Ambient occlusion (without corners)Mel
2023-06-29Add fogMel
2022-10-23Sun lightingMel
2022-10-18Add layout qualifiers in vertex shaderMel
2022-10-10Try to add second VBOMel
2022-10-08Store assets nicelyMel
'>5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
<script lang="ts">
	import Title from '$components/Title.svelte';
	import Form from '$components/Form.svelte';
	import Responses from '$components/Responses.svelte';
</script>

<style>
	main {
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		overflow: hidden;
	}

	.output {
		position: absolute;
		top: 175px;
		width: 100%;
	}

	.content {
		position: relative;
		width: 80%;
	}

	@media (min-width: 800px) {
		.content {
			width: 40%;
		}
	}
</style>

<main>
	<div class="content">
		<Title/>
		<Form/>
		<div class="output">
			<Responses/>
		</div>
	</div>
</main>