vue实现简洁清爽的待办事项代码
代码语言:html
所属分类:其他
代码描述:vue实现简洁清爽的待办事项代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
@import url("https://fonts.googleapis.com/css?family=DM+Sans:400,500,700&display=swap");
* {
box-sizing: border-box;
}
:root {
--checkbox-color: #7733ff;
--checkbox-shadow: hsl(260deg 100% 80% / 25%);
--add-button: #ee9ca7;
--add-button-shadow: rgba(238, 156, 167, 0.4);
}
body {
width: 100%;
height: 100vh;
margin: 0;
padding: 16px;
display: flex;
justify-content: center;
align-items: center;
background-image: radial-gradient(#ddccff, #9966ff, #7733ff);
background-blend-mode: normal, lighten, multiply, hard-light;
font-family: "DM Sans", sans-serif;
overflow: hidden;
background: url('//repo.bfw.wiki/bfwrepo/image/638847feeeebb.png');
background-size: cover;
background-position: 50% 50%;
}
input {
outline: none;
}
ul {
list-style: none;
padding: 0;
}
.app-container {
border-radius: 8px;
width: 100%;
max-width: 480px;
max-height: 100%;
background-color: #10101d;
padding: 24px;
overflow: auto;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 6px 5px -5px rgba(0, 0, 0, 0.5), 0 7px 0 -2px #1e1e1e, 0 11px 5px -5px rgba(0, 0, 0, 0.5), 0 13px 0 -4px rgba(30, 30, 30, 0.7), 0 16px 5px -5px rgba(0, 0, 0, 0.5), 0 20px 0 -8px rgba(30.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0