knowyt/client/pages/index.vue

64 lines
1.2 KiB
Vue
Raw Normal View History

2021-07-30 14:54:40 +00:00
<template>
<div class="page-index">
2021-07-30 15:24:44 +00:00
<div class="page-index__titlebox">
<div class="page-index__titleborderbox2" />
<div class="page-index__titleborderbox3" />
<div class="page-index__titleborderbox1">
<h1 class="page-index__title">
Know Your Teammates!
</h1>
</div>
</div>
2021-07-30 14:54:40 +00:00
</div>
</template>
<script>
export default {}
</script>
<style lang="scss">
.page-index {
2021-07-30 15:24:44 +00:00
&__titlebox {
position: relative;
top: 120px;
left: 0;
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;
text-align: center;
2021-07-30 14:54:40 +00:00
}
}
</style>