css布局实现简洁待办事项待办工作ui布局效果代码
代码语言:html
所属分类:布局界面
代码描述:css布局实现简洁待办事项待办工作ui布局效果代码
代码标签: css 简洁 待办 事项 待办 工作 ui 布局
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<link href='https://fonts.googleapis.com/css?family=Lato:400,300,100' rel='stylesheet' type='text/css'>
<link href="https://file.myfontastic.com/qUBUwJXJRtVZmUxLaXtXPY/icons.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Rock+Salt' rel='stylesheet' type='text/css'>
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/normalize.css">
<style>
body,
html {
height: 100%;
}
body {
font-family: 'Lato', helvetica, sans-serif;
}
main {
height: 100%;
}
main section {
display: inline-block;
vertical-align: top;
}
main section.todo {
width: 60%;
box-sizing: border-box;
padding-left: 5vw;
padding-right: 1rem;
position: relative;
padding-bottom: 5rem;
/* background-color: white; */
}
main section.todo .todo__header {
padding: 2rem 0;
width: 100%;
box-sizing: border-box;
}
main section.todo .todo__logo {
font-family: 'Rock Salt', cursive;
font-size: 1rem;
}
main section.todo .todo__logo span {
color: #D01C1A;
}
main section.todo .todo__footer {
padding: 1.5rem 0;
position: absolute;
bottom: 0;
left: 5vw;
}
main section.todo .todo__menu {
display: block;
font-size: 1.5rem;
cursor: pointer;
}
main section.todo .todo__grid .todo__row {
width: 100%;
margin-right: -1rem;
margin-left: -1rem;
}
main section.todo .todo__grid .todo__row .todo__column {
width: 50%;
display: inline-block;
vertical-align: top;
box-sizing: border-box;
padding: 1rem;
}
main section.todo .todo__grid .todo__row .todo__column .todo__form {
/* border-top: 4px solid @red; */
}
main section.todo .todo__grid .todo__row .todo__column .todo__form .todo__category i {
background-color: #D01C1A;
color: #FCF9FA;
padding: 0.4rem 0.4rem 0.2.........完整代码请登录后点击上方下载按钮下载查看
网友评论0