vue实现任务管理todolist效果代码
代码语言:html
所属分类:表单美化
代码描述:vue实现任务管理todolist效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/font-awesome-4.7.0/css/font-awesome.min.css">
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Source+Sans+Pro'>
<style>
*, *:before, *:after {
box-sizing: border-box;
}
html {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-feature-settings: "liga", "kern";
overflow-y: scroll;
overflow-x: hidden;
height: 100%;
background: linear-gradient(210deg, #9adbbe, #4fc08d);
}
body {
height: 100%;
align-items: center;
justify-content: center;
font-family: "Source Sans Pro", sans-serif;
}
button {
background: none;
border: none;
color: inherit;
font-size: inherit;
font-family: inherit;
font-weight: inherit;
}
button:focus {
outline: none;
}
button:hover {
cursor: pointer;
}
.app {
width: 420px;
min-height: 50vh;
margin: 50px auto;
justify-content: space-between;
bo.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0