homepage revamped

This commit is contained in:
Nikita Krupin
2022-08-15 23:08:41 -04:00
parent a1e8911933
commit c27a2f46e9
5 changed files with 44 additions and 12 deletions

View File

@@ -62,7 +62,7 @@
}
:root {
--white: #ffe1e1;
--white: #fff;
--red: #ff4151;
--red-glow: #ff838d40;
--grey-one: #1c1e29;

View File

@@ -5,11 +5,23 @@
</script>
<div class="wrapper">
<HeroImage />
<IndexDescription />
<div class="wrappezoid">
<IndexDescription />
<HeroImage />
</div>
<SocialHost />
</div>
<style>
.wrappezoid {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
}
@media (max-width: 768px) {
.wrappezoid {
flex-direction: column;
}
}
</style>