赞
踩
8.界面优化
8.1 优化首页
- <template>
- <section class="container">
- <div>
- <app-logo/>
- <h1 class="title">
- 黑马旅游网
- </h1>
- <h2 class="subtitle">
- 你最值得信赖的旅游指导
- </h2>
- <div class="links">
- <a
- href="http://www.itcast.cn/"
- target="_blank"
- class="button--green">传智播客</a>
- <a
- href="http://www.itheima.com/"
- target="_blank"
- class="button--green">黑马程序员</a>
- </div>
- </div>
- </section>
- </template>
-
- <script>
- import AppLogo from '~/components/AppLogo.vue'
- export default {
- components: {
- AppLogo
- }
- }
- </script>
-
- <!-- css样式,可以根据自己选择进行调整 -->
- <style>
- .container {
- 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; /* 1 */
- display: block;
- font-weight: 300;
- font-size: 70px;
- color: #35495e;
- letter-spacing: 1px;
- }
-
- .subtitle {
- font-weight: 300;
- font-size: 20px;
- color: #526488;
- word-spacing: 5px;
- padding-bottom: 15px;
- }
-
- .links {
- padding-top: 15px;
- }
- </style>

Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。