35 lines
624 B
Vue
35 lines
624 B
Vue
<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: #2c3e50;
|
|
}
|
|
}
|
|
</style>
|