css布局实现一个简洁待办事项UI布局窗口效果代码
代码语言:html
所属分类:布局界面
代码描述:css布局实现一个简洁待办事项UI布局窗口效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> * { box-sizing: border-box; outline: none; } :root { --bg-color: #f5f8ff; --main-color: #353536; --secondary-color: #8e92a4; --main-text-color: #5d606b; --secondary-dark-color: #9496a5; --tag-color-one: #e0fbf6; --tag-color-text-one: #58c2a9; --tag-color-two: #ece7fe; --tag-color-text-two: #8972f3; --tag-color-three: #fde7ea; --tag-color-text-three: #e77f89; --tag-color-four: #f7f8fc; --tag-color-text-four: #a0a6b5; --checkbox-color: #009e90; --button-color: #49beb7; --box-color: #fff1d6; --box-color-2: #d3e6ff; --box-color-3: #ffd9d9; --box-color-4: #daffe5; --task-color: #777982; } body, .item, .top-part, .top-part .count { display: flex; align-items: center; } body { margin: 0; justify-content: center; flex-direction: column; overflow: auto; width: 100%; height: 100vh; padding: 20px; font-family: 'DM Sans', sans-serif; font-size: 12px; background-image: linear-gradient(21deg, rgba(64, 83, 206, 0.3697003235) 68%, rgba(255, 206, 196, 0.5) 163%), linear-gradient(163deg, rgba(49, 146, 170, 0.0794448997) 86%, rgba(239, 112, 138, 0.5) 40%), linear-gradient(30deg, rgba(76, 79, 173, 0.6173675717) 22%, rgba(237, 106, 134, 0.5) 169%), linear-gradient(48deg, rgba(31, 85, 147, 0.7323890642) 64%, rgba(247, 126, 132, 0.5) 43%); background-blend-mode: overlay,multiply,color,normal; } ul { list-style-type: none; padding: 0; } button { border: none; background: none; cursor: pointer; } .task-manager { display: flex; justify-content: space-between; width: 100%; max-width: 1200px; height: 90vh; max-height: 900px; background: #fff; border-radius: 4px; box-shadow: 0 0.3px 2.2px rgba(0, 0, 0, 0.011), 0 0.7px 5.3px rgba(0, 0, 0, 0.016), 0 1.3px 10px rgba(0, 0, 0, 0.02), 0 2.2px 17.9px rgba(0, 0, 0, 0.024), 0 4.2px 33.4px rgba(0, 0, 0, 0.029), 0 10px 80px rgba(0, 0, 0, 0.04); overflow: hidden; } .left-bar { background-color: var(--bg-color); width: 230px; border-right: 1px solid #e3e7f7; position: relative; } .left-content { padding: 40px; } .item { color: var(--main-color); margin-bottom: 14px; font-weight: 500; } .item svg { width: 14px; height: 14px; color: currentcolor; margin-right: 10px; } .category-list { margin-top: 50px; } .category-list .item { color: var(--secondary-color); } .actions { padding: 12px; display: flex; justify-content: space-between; } .circle { border-radius: 50%; width: 10px; height: 10px; background-color: #fe4d46; box-shadow: 14px 0 0 0 #fbc023, 28px 0 0 0 #7dd21f; } .circle-2 { border-radius: 50%; width: 4px; height: 4px; background-color: #d5d7e3; box-shadow: -6px 0 0 0 #d5d7e3, 6px 0 0 0 #d5d7e3; } .right-bar { width: 320px; border-left: 1px solid #e3e7f7; display: flex; flex-direction: column; } .right-bar .header { font-size: 20px; color: var(--main-text-color); margin-left: 30px; } .top-part { padding: 30px; align-self: flex-end; } .top-part svg { width: 14px; height: 14px; color: var(--main-color); margin-right: 14px; } .top-part .count { font-size: 12px; border-radius: 50%; width: 24px; height: 24px; background-color: #623ce8; color: #fff; justify-content: center; } .right-content { padding: 10px 40px; overflow-y: auto; flex: 1; } .task-box { position: relative; border-radius: 12px; width: 100%; margin: 20px 0; padding: 16px; cursor: pointer; box-shadow: 2px 2px 4px 0px #ebebeb; } .task-box:hover { transform: scale(1.02); } .time { margin-bottom: 6px; opacity: 0.4; font-size: 10px; } .task-name { font-size: 14px; font-weight: 500; opacity: 0.6; } .yellow { background-color: var(--box-color); } .blue { background-color: var(--box-color-2); } .red { background-color: var(--box-color-3); } .green { background-color: var(--box-color-4); } .more-button { position: absolute; width: 3px; height: 3px; border-radius: 50%; background-color: #8e92a4; box-shadow: 0 -4px 0 0 #8e92a4, 0 4px 0 0 #8e92a4; opacity: 0.4; right: 20px; top: 30px; cursor: pointer; } .members { display: flex; margin-top: 14px; } .members img { border-radius: 50%; width: 30px; heigh.........完整代码请登录后点击上方下载按钮下载查看
网友评论0