5:样式
5.1:CSS
到目前为止,我们的用户界面看起来相当丑陋。让我们添加一些基本的样式,这将作为更专业外观的应用程序的基础。
将我们的client/main.css
文件的内容替换为下面的内容,我们的想法是在顶部有一个应用栏,以及一个可滚动的内容,包括
- 添加新任务的表单;
- 任务列表。
client/main.css
body {
font-family: sans-serif;
background-color: #315481;
background-image: linear-gradient(to bottom, #315481, #918e82 100%);
background-attachment: fixed;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
padding: 0;
margin: 0;
font-size: 14px;
}
button {
font-weight: bold;
font-size: 1em;
border: none;
color: white;
box-shadow: 0 3px 3px rgba(34, 25, 25, 0.4);
padding: 5px;
cursor: pointer;
}
button:focus {
outline: 0;
}
.app {
display: flex;
flex-direction: column;
height: 100vh;
}
.app-header {
flex-grow: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.main {
display: flex;
flex-direction: column;
flex-grow: 1;
overflow: auto;
background: white;
}
.main::-webkit-scrollbar {
width: 0;
height: 0;
background: inherit;
}
header {
background: #d2edf4;
background-image: linear-gradient(to bottom, #d0edf5, #e1e5f0 100%);
padding: 20px 15px 15px 15px;
position: relative;
box-shadow: 0 3px 3px rgba(34, 25, 25, 0.4);
}
.app-bar {
display: flex;
justify-content: space-between;
}
.app-bar h1 {
font-size: 1.5em;
margin: 0 1em 0 0;
display: inline-block;
}
.task-form {
display: flex;
margin: 16px;
}
.task-form > input {
flex-grow: 1;
box-sizing: border-box;
padding: 10px 6px;
background: transparent;
border: 1px solid #aaa;
width: 100%;
font-size: 1em;
margin-right: 16px;
}
.task-form > input:focus {
outline: 0;
}
.task-form > button {
min-width: 100px;
height: 95%;
background-color: #315481;
}
.tasks {
list-style-type: none;
padding-inline-start: 0;
padding-left: 16px;
padding-right: 16px;
margin-block-start: 0;
margin-block-end: 0;
}
.task {
display: flex;
padding: 16px;
border-bottom: #eee solid 1px;
}
.task > span {
flex-grow: 1;
}
.task > button {
justify-self: flex-end;
background-color: #ff3046;
}
如果你想了解更多关于此样式表的信息,请查看这篇文章,了解关于Flexbox的内容,以及来自Wes Bos的关于它的这个免费视频教程。
Flexbox 是一个优秀的工具,可以用来在你的 UI 中分配和对齐元素。
5.2:应用样式
现在你需要在你的组件周围添加一些元素。你将在App
中的主div中添加一个className
,以及一个带有几个围绕你h1
的divs
的header
元素,以及一个围绕你的表单和列表的主div
。查看下面它应该是什么样子,注意类的名称,它们需要与CSS文件中的名称相同
imports/ui/App.vue
<template>
<div class="app">
<header>
<div className="app-bar">
<div className="app-header">
<h1>Todo List</h1>
</div>
</div>
</header>
<div class="main">
<TaskForm />
<ul class="tasks">
<Task
class="task"
v-for="task in tasks"
v-bind:key="task._id"
v-bind:task="task"
/>
</ul>
</div>
</div>
</template>
..
还可以为你的应用选择一个更好的标题,Meteor 非常棒,但你不想一直看到应用顶部的Todo List
。
你可以选择类似以下内容
imports/ui/App.jsx
..
<h1>📝️ To Do List</h1>
..
你的应用应该如下所示

回顾:你可以查看你的代码在这一步结束时应该是什么样子这里
在下一步中,我们将使这个任务列表更具交互性,例如,提供一种筛选任务的方法。