This commit is contained in:
jiayuqi7813
2022-05-21 23:35:48 +08:00
commit 601d9c2831
20 changed files with 1558 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<template>
<div class="index">
<div class="title">
Welcome to SNCTF
</div>
</div>
</template>
<style lang="less" scoped>
.index {
display: flex;
justify-content: center;
align-items: center;
height: auto;
/* 首页 */
position: absolute;
left: 0px;
top: 80px;
width: 100%;
height: auto;
background: #2D3039;
.title{
/* Welcome To SNCTF */
position: absolute;
font-family: MiSans-Regular;
font-size: 50px;
font-weight: normal;
margin-top: 10%;
color: #FFFFFF;
}
}
</style>