|
|
@@ -1,30 +1,16 @@
|
|
|
<template>
|
|
|
- <div class="container">
|
|
|
- <div>
|
|
|
- <logo />
|
|
|
- <h1 class="title">
|
|
|
- portal-frontend
|
|
|
- </h1>
|
|
|
- <h2 class="subtitle">
|
|
|
- My fine Nuxt.js project
|
|
|
- </h2>
|
|
|
- <div class="links">
|
|
|
- <a
|
|
|
- href="https://nuxtjs.org/"
|
|
|
- target="_blank"
|
|
|
- class="button--green"
|
|
|
- >
|
|
|
- Documentation
|
|
|
- </a>
|
|
|
- <a
|
|
|
- href="https://github.com/nuxt/nuxt.js"
|
|
|
- target="_blank"
|
|
|
- class="button--grey"
|
|
|
- >
|
|
|
- GitHub
|
|
|
- </a>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ <div>
|
|
|
+ <!--<el-menu-->
|
|
|
+ <!--default-active="1"-->
|
|
|
+ <!--class="el-menu-demo"-->
|
|
|
+ <!--mode="horizontal"-->
|
|
|
+ <!--active-text-color="#409eff">-->
|
|
|
+ <!--<el-menu-item index="0"><image src="/image/seec_logo--bw.png" class="nav__logo" /></el-menu-item>-->
|
|
|
+ <!--<el-menu-item index="1"><a href="http://mooc.seecoder.cn" target="_self">软工一</a></el-menu-item>-->
|
|
|
+ <!--<el-menu-item index="2"><a href="http://bok.seecoder.cn" target="_self">题库</a></el-menu-item>-->
|
|
|
+ <!--<el-menu-item index="3"><a href="http://helper.seecoder.cn" target="_self">学习助手</a></el-menu-item>-->
|
|
|
+ <!--</el-menu>-->
|
|
|
+ <img class="home-banner" src="/image/SEEC_banner.png"/>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
@@ -38,35 +24,6 @@ export default {
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style>
|
|
|
-.container {
|
|
|
- margin: 0 auto;
|
|
|
- min-height: 100vh;
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- text-align: center;
|
|
|
-}
|
|
|
-
|
|
|
-.title {
|
|
|
- font-family: 'Quicksand', 'Source Sans Pro', -apple-system, BlinkMacSystemFont,
|
|
|
- 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
|
- display: block;
|
|
|
- font-weight: 300;
|
|
|
- font-size: 100px;
|
|
|
- color: #35495e;
|
|
|
- letter-spacing: 1px;
|
|
|
-}
|
|
|
-
|
|
|
-.subtitle {
|
|
|
- font-weight: 300;
|
|
|
- font-size: 42px;
|
|
|
- color: #526488;
|
|
|
- word-spacing: 5px;
|
|
|
- padding-bottom: 15px;
|
|
|
-}
|
|
|
-
|
|
|
-.links {
|
|
|
- padding-top: 15px;
|
|
|
-}
|
|
|
+<style lang="scss" scoped>
|
|
|
+ @import '~/assets/css/home.scss';
|
|
|
</style>
|