css实现自适应备忘录列表待办事项代码
代码语言:html
所属分类:布局界面
代码描述:css实现自适应备忘录列表待办事项代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--gapSize: 0.6rem;
--barSize: 0.3rem;
--bulletSize: 0.6rem;
--altBg: linear-gradient(#f7ff00, #db36a4);
--bg: linear-gradient(#03001e, #7303c0, #ec38bc);
}
body {
display: flex;
height: 100vh;
align-items: center;
justify-content: center;
background: var(--bg);
font-family: 'Rubik';
}
main {
box-shadow: 0 0 15px rgba(0,0,0,0.23);
background: #fff;
border-radius: 10px;
o.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0