'awards' on frontpage

This commit is contained in:
ntr 2019-12-29 16:20:17 +10:00
parent 0044cccf67
commit 868257825f
4 changed files with 2704 additions and 8 deletions

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 106 KiB

View File

@ -197,4 +197,5 @@ section {
.intro {
text-align: center;
font-size: 0.8em;
}

View File

@ -297,6 +297,14 @@ li {
background-position: center;
}
.awards {
height: 100%;
background-image: url("../../assets/mnml.awards.svg");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.discord-btn {
background-image: url("./../discord.white.svg");
background-size: contain;

View File

@ -35,13 +35,15 @@ function Play(args) {
} = args;
const news = (
<div class="intro">
<p> MNML is a turn-based 1v1 strategy game in an abstract setting. </p>
<p>
Build a unique team of 3 constructs from a range of skills and specialisations.<br />
Outplay your opponent across multiple rounds by adapting to an always shifting meta. <br />
Simple rules, complex interactions and unique mechanics.<br />
</p>
<div class="list">
<div class="intro">
<p> MNML is a turn-based 1v1 strategy game in an abstract setting. </p>
<p>
Build a unique team of 3 constructs from a range of skills and specialisations.<br />
Outplay your opponent across multiple rounds by adapting to an always shifting meta. <br />
</p>
</div>
<div class="awards"></div>
</div>
);
@ -72,9 +74,10 @@ function Play(args) {
<main>
<NoiseLogo />
<hr />
{list()}
<hr />
{news}
<hr />
{list()}
<Welcome />
</main>
);