reworked css
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
<template>
|
||||
<div class="outer">
|
||||
<div class="container">
|
||||
<div class="header-top">
|
||||
<h1 class="title" @click="startCountdown">Vinlotteri</h1>
|
||||
<section class="header-and-notification">
|
||||
<h1 @click="startCountdown">Vinlotteri</h1>
|
||||
<img
|
||||
src="/public/assets/images/notification.svg"
|
||||
alt="Notification-bell"
|
||||
@@ -11,32 +11,14 @@
|
||||
role="button"
|
||||
v-if="notificationAllowed"
|
||||
/>
|
||||
</div>
|
||||
<router-link to="lottery" class="generate-link">
|
||||
Vil du til lotteriet?
|
||||
<span class="subtext generator-link">Trykk her</span>
|
||||
</router-link>
|
||||
<div class="chart-container">
|
||||
</section>
|
||||
<section class="chart-container">
|
||||
<PurchaseGraph class="purchase" />
|
||||
<WinGraph class="win" />
|
||||
</div>
|
||||
<router-link to="dagens" class="generate-link">
|
||||
Lurer du på dagens fangst?
|
||||
<span class="subtext generator-link">Se her</span>
|
||||
</router-link>
|
||||
<div class="bottom-container">
|
||||
<div class="left-bottom">
|
||||
<TotalBought />
|
||||
<hr class="bought-and-highscore-separator" />
|
||||
<div class="highscore-and-wines">
|
||||
<Highscore class="highscore-container" />
|
||||
</section>
|
||||
<TotalBought class="total-bought" />
|
||||
<Wines class="wines-container" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="vipps-outer-container">
|
||||
<Vipps class="vipps-inner-container" />
|
||||
</div>
|
||||
</div>
|
||||
<Vipps class="vipps-icon" />
|
||||
</div>
|
||||
<Countdown :hardEnable="hardStart" @countdown="changeEnabled" />
|
||||
</div>
|
||||
@@ -108,207 +90,70 @@ export default {
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import "../styles/global.scss";
|
||||
@import "../styles/media-queries.scss";
|
||||
|
||||
.notification-request-button {
|
||||
cursor: pointer;
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
.bottom-container {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
max-width: 1350px;
|
||||
margin: auto;
|
||||
justify-content: space-evenly;
|
||||
align-items: center;
|
||||
padding: 0 30px;
|
||||
|
||||
@include mobile {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.header-top {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-bottom: 2rem;
|
||||
margin-top: 3.8rem;
|
||||
|
||||
@include mobile {
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
|
||||
.title {
|
||||
cursor: pointer;
|
||||
margin: auto 0;
|
||||
}
|
||||
}
|
||||
|
||||
.left-bottom {
|
||||
width: 75%;
|
||||
|
||||
@include mobile {
|
||||
width: calc(100% - 20px);
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.bought-and-highscore-separator {
|
||||
border: none;
|
||||
|
||||
@include desktop {
|
||||
border-bottom: 1px solid rgb(237, 237, 237);
|
||||
}
|
||||
}
|
||||
|
||||
.highscore-and-wines {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
padding-top: 1.5rem;
|
||||
justify-content: space-between;
|
||||
|
||||
@include mobile {
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.highscore-container {
|
||||
@include mobile {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.wines-container {
|
||||
width: 65%;
|
||||
|
||||
@include mobile {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.vipps-outer-container {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
|
||||
@include desktop {
|
||||
margin-left: 20px;
|
||||
border-left: 1px solid rgb(237, 237, 237);
|
||||
}
|
||||
}
|
||||
|
||||
.container {
|
||||
margin-bottom: 2.5rem;
|
||||
}
|
||||
|
||||
.outer {
|
||||
width: 100vw;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
h1 {
|
||||
width: 100vw;
|
||||
text-align: center;
|
||||
font-family: "knowit";
|
||||
margin: 1em;
|
||||
}
|
||||
|
||||
.generate-link {
|
||||
color: #333333;
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
width: 100vw;
|
||||
text-align: center;
|
||||
margin-bottom: 0px;
|
||||
|
||||
@include mobile {
|
||||
width: 60vw;
|
||||
margin: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.vipps-image {
|
||||
width: 250px;
|
||||
margin: auto;
|
||||
display: block;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.generator-link {
|
||||
font-weight: bold;
|
||||
border-bottom: 1px solid $link-color;
|
||||
}
|
||||
|
||||
.win,
|
||||
.purchase {
|
||||
width: 48%;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.vipps-inner-container {
|
||||
margin-top: 15px;
|
||||
margin-bottom: 15px;
|
||||
margin-left: 30px;
|
||||
|
||||
@include mobile {
|
||||
margin: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.chart-container {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 99vw;
|
||||
max-width: 1400px;
|
||||
margin: auto;
|
||||
padding: 50px 0;
|
||||
}
|
||||
|
||||
.wine-and-highscore-container {
|
||||
.container{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding-bottom: 20vw;
|
||||
border-right: 1px solid #333;
|
||||
}
|
||||
|
||||
@include mobile {
|
||||
.purchase,
|
||||
.win {
|
||||
width: 100vw;
|
||||
.header-and-notification{
|
||||
display: flex;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.generate-link {
|
||||
margin-bottom: 30px;
|
||||
.vipps-icon{
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.chart-container {
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
padding: 0;
|
||||
margin-top: 30px;
|
||||
@include tablet {
|
||||
.chart-container{
|
||||
display: flex;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.outer {
|
||||
justify-content: flex-start;
|
||||
@include desktop {
|
||||
|
||||
display: grid;
|
||||
grid: auto-flow min-content / 1fr 1fr;
|
||||
grid-template-areas: "top top"
|
||||
"middle-top middle-top"
|
||||
"middle-bot-left middle-bot-right"
|
||||
"bot bot";
|
||||
grid-gap: 1em;
|
||||
|
||||
.header-and-notification {
|
||||
grid-area: top;
|
||||
}
|
||||
|
||||
.bottom-container,
|
||||
.highscore-and-wines {
|
||||
flex-direction: column;
|
||||
.total-bought{
|
||||
grid-area: middle-bot-left;
|
||||
}
|
||||
|
||||
.wines-container,
|
||||
.vipps-outer-container,
|
||||
.vipps-container {
|
||||
margin-left: 0px;
|
||||
.wines-container{
|
||||
grid-area: middle-bot-right;
|
||||
}
|
||||
|
||||
.chart-container{
|
||||
grid-area: middle-top;
|
||||
}
|
||||
|
||||
.vipps-icon{
|
||||
grid-area: bot;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@include widescreen {
|
||||
width: 70%;
|
||||
max-width: 1800px;
|
||||
margin: auto;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
|
||||
@@ -141,13 +141,6 @@ export default {
|
||||
.chart {
|
||||
height: 40vh;
|
||||
max-height: 500px;
|
||||
|
||||
@include mobile {
|
||||
position: relative;
|
||||
width: 90vw !important;
|
||||
max-height: unset;
|
||||
height: 30vh;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
width: 100%;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -107,13 +107,6 @@ export default {
|
||||
.chart {
|
||||
height: 40vh;
|
||||
max-height: 500px;
|
||||
|
||||
@include mobile {
|
||||
position: relative;
|
||||
width: 90vw !important;
|
||||
max-height: unset;
|
||||
height: 30vh;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
width: 100%;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user