first work on design rework

This commit is contained in:
Adrian Thompson
2020-10-01 10:56:20 +02:00
parent 53257a16ff
commit 2b44a6454f

View File

@@ -1,6 +1,29 @@
<template> <template>
<div class="outer"> <div class="outer">
<section class="top-info">
<h1 class="want-to-win">
Vil du også vinne?
</h1>
<a href="#" class="participate-button">
<i> -> </i>
<p>Trykk her for å delta</p>
</a>
<a href="#" class="see-details-link">
Se vipps detaljer og QR-kode
</a>
</section>
<div class="container"> <div class="container">
<!-- <span> Scroll for å annen gøy statistikk</span> -->
<section class="header-and-notification"> <section class="header-and-notification">
<h1 @click="startCountdown">Vinlotteri</h1> <h1 @click="startCountdown">Vinlotteri</h1>
<img <img
@@ -12,18 +35,24 @@
v-if="notificationAllowed" v-if="notificationAllowed"
/> />
</section> </section>
<div class="to-lottery-container"> <div class="to-lottery-container">
<a href="#/lottery" class="to-lottery">Vil du til lotteriet?<span class="vin-link">Trykk her</span></a> <a href="#/lottery" class="to-lottery">Vil du til lotteriet?<span class="vin-link">Trykk her</span></a>
</div> </div>
<section class="chart-container"> <section class="chart-container">
<PurchaseGraph class="purchase" /> <PurchaseGraph class="purchase" />
<WinGraph class="win" /> <WinGraph class="win" />
</section> </section>
<TotalBought class="total-bought" /> <TotalBought class="total-bought" />
<Vipps class="vipps-icon" /> <Vipps class="vipps-icon" />
<Highscore class="highscore"/> <Highscore class="highscore"/>
<Wines class="wines-container" /> <Wines class="wines-container" />
</div> </div>
<Countdown :hardEnable="hardStart" @countdown="changeEnabled" /> <Countdown :hardEnable="hardStart" @countdown="changeEnabled" />
</div> </div>
</template> </template>
@@ -95,9 +124,63 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
@import "../styles/media-queries.scss"; @import "../styles/media-queries.scss";
@import "../styles/variables.scss";
.top-info {
height: 30em;
background-color: $primary;
width: 100vw;
margin: 0;
padding: 0;
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: repeat(12, 1fr);
align-items: center;
justify-items: start;
.want-to-win {
grid-column: 3 / 7;
grid-row: 4 / 6;
font-size: 3em;
font-weight: 400;
}
.participate-button {
grid-column: 3 / 7;
grid-row: 6 / 8;
background: inherit;
border: 4px solid black;
padding: 0 1em 0 1em;
display: flex;
width: 15em;
justify-content: space-evenly;
align-items: center;
text-decoration: none;
color: black;
i {
color: $link-color;
}
p {
font-size: 16px;
}
}
.see-details-link {
grid-column: 3 / 7;
grid-row: 8 / 10;
font-weight: bold;
color: black;
font-weight: 200;
font-size: 1.3em;
text-decoration: underline;
text-decoration-color: $link-color;
text-underline-position: under;
}
.outer {
margin: 1em;
} }
h1 { h1 {