startpage
This commit is contained in:
parent
a970bf31d0
commit
b99b8d0726
@ -8,6 +8,8 @@
|
|||||||
html, body {
|
html, body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
background-color: #402080;
|
background-color: #402080;
|
||||||
|
@ -1,8 +1,14 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="page-index">
|
<div class="page-index">
|
||||||
<h1 class="page-index__title">
|
<div class="page-index__titlebox">
|
||||||
Know Your Teammates!
|
<div class="page-index__titleborderbox2" />
|
||||||
</h1>
|
<div class="page-index__titleborderbox3" />
|
||||||
|
<div class="page-index__titleborderbox1">
|
||||||
|
<h1 class="page-index__title">
|
||||||
|
Know Your Teammates!
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -12,6 +18,45 @@ export default {}
|
|||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.page-index {
|
.page-index {
|
||||||
|
&__titlebox {
|
||||||
|
position: relative;
|
||||||
|
top: 120px;
|
||||||
|
left: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
&__titleborderbox1 {
|
||||||
|
display: flex;
|
||||||
|
width: 50%;
|
||||||
|
height: 200px;
|
||||||
|
min-width: 600px;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
border: 4px solid #808040;
|
||||||
|
border-radius: 16px;
|
||||||
|
background-color: #6040c0;
|
||||||
|
z-index: 3;
|
||||||
|
}
|
||||||
|
&__titleborderbox2 {
|
||||||
|
position: absolute;
|
||||||
|
top: 40px;
|
||||||
|
width: 60%;
|
||||||
|
height: 120px;
|
||||||
|
border-radius: 16px;
|
||||||
|
border: 4px solid #808040;
|
||||||
|
background-color: #6040c0;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
&__titleborderbox3 {
|
||||||
|
position: absolute;
|
||||||
|
top: 80px;
|
||||||
|
width: 65%;
|
||||||
|
height: 40px;
|
||||||
|
border-radius: 16px;
|
||||||
|
border: 4px solid #808040;
|
||||||
|
background-color: #6040c0;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
&__title {
|
&__title {
|
||||||
color: #e0e080;
|
color: #e0e080;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user