knowyt/client/pages/index.vue

96 lines
1.8 KiB
Vue
Raw Normal View History

2021-07-30 14:54:40 +00:00
<template>
2021-07-30 16:03:56 +00:00
<div class="startpage">
<div class="startpage__titlebox">
<div class="startpage__titleborderbox2" />
<div class="startpage__titleborderbox3" />
<div class="startpage__titleborderbox1">
<h1 class="startpage__title">
2021-07-30 15:24:44 +00:00
Know Your Teammates!
</h1>
</div>
</div>
2021-07-30 16:03:56 +00:00
<div class="startpage__buttonline">
<NuxtLink class="startpage__playbutton" to="/play">
Play!
</NuxtLink>
</div>
2021-07-30 14:54:40 +00:00
</div>
</template>
<script>
2021-07-30 16:03:56 +00:00
export default {
}
2021-07-30 14:54:40 +00:00
</script>
<style lang="scss">
2021-07-30 16:03:56 +00:00
.startpage {
2021-07-30 15:24:44 +00:00
&__titlebox {
position: relative;
2021-07-30 16:03:56 +00:00
margin: 120px 0;
2021-07-30 15:24:44 +00:00
display: flex;
justify-content: center;
}
2021-07-30 15:40:35 +00:00
&__titleborderbox1,
&__titleborderbox2,
&__titleborderbox3 {
border: 4px solid #808040;
border-radius: 16px;
background-color: #6040c0;
}
2021-07-30 15:24:44 +00:00
&__titleborderbox1 {
display: flex;
2021-07-30 15:40:35 +00:00
width: 600px;
2021-07-30 15:24:44 +00:00
height: 200px;
justify-content: center;
align-items: center;
z-index: 3;
}
&__titleborderbox2 {
position: absolute;
top: 40px;
2021-07-30 15:40:35 +00:00
width: 720px;
2021-07-30 15:24:44 +00:00
height: 120px;
z-index: 2;
}
&__titleborderbox3 {
position: absolute;
top: 80px;
2021-07-30 15:40:35 +00:00
width: 760px;
2021-07-30 15:24:44 +00:00
height: 40px;
z-index: 1;
}
2021-07-30 14:54:40 +00:00
&__title {
2021-07-30 15:03:31 +00:00
color: #e0e080;
2021-07-30 15:40:35 +00:00
font-size: 64px;
2021-07-30 16:17:18 +00:00
font-family: 'Wendy One';
color: #ffff80;
2021-07-30 15:40:35 +00:00
text-align: center;
2021-07-30 14:54:40 +00:00
}
2021-07-30 16:03:56 +00:00
&__buttonline {
display: flex;
justify-content: center;
}
&__playbutton {
width: 200px;
2021-07-30 16:17:18 +00:00
height: 48px;
2021-07-30 16:03:56 +00:00
padding: 16px 24px;
border: 4px solid #c0c060;
border-radius: 8px;
background-color: #40a020;
color: #ffff80;
2021-07-30 16:17:18 +00:00
font-family: Dosis;
font-weight: 800;
2021-07-30 16:03:56 +00:00
font-size: 36px;
text-align: center;
text-decoration: none;
&:hover {
border-color: #ffffc0;
2021-07-30 16:17:18 +00:00
background-color: #60c040;
color: #ffffc0;
2021-07-30 16:03:56 +00:00
}
}
2021-07-30 14:54:40 +00:00
}
</style>