65 lines
1.2 KiB
Vue
65 lines
1.2 KiB
Vue
<template>
|
|
<div class="titlebox__container">
|
|
<div class="titlebox__titleborderbox2" />
|
|
<div class="titlebox__titleborderbox3" />
|
|
<div class="titlebox__titleborderbox1">
|
|
<h1 class="titlebox__title">
|
|
Know Your Teammates!
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
@import '~/assets/css/components';
|
|
|
|
.titlebox {
|
|
&__container {
|
|
position: relative;
|
|
padding: 80px 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
&__titleborderbox1,
|
|
&__titleborderbox2,
|
|
&__titleborderbox3 {
|
|
border: $box-primary-border;
|
|
border-radius: 16px;
|
|
background-color: $box-primary-background-color;
|
|
}
|
|
|
|
&__titleborderbox1 {
|
|
display: flex;
|
|
width: 600px;
|
|
height: 200px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 3;
|
|
}
|
|
|
|
&__titleborderbox2 {
|
|
position: absolute;
|
|
top: 120px;
|
|
width: 720px;
|
|
height: 120px;
|
|
z-index: 2;
|
|
}
|
|
|
|
&__titleborderbox3 {
|
|
position: absolute;
|
|
top: 160px;
|
|
width: 760px;
|
|
height: 40px;
|
|
z-index: 1;
|
|
}
|
|
|
|
&__title {
|
|
font-size: 64px;
|
|
font-family: $font-primary;
|
|
color: $box-primary-text-color;
|
|
text-align: center;
|
|
}
|
|
}
|
|
</style>
|