css实现日程计划待办事项UI界面效果代码
代码语言:html
所属分类:布局界面
代码描述:css实现日程计划待办事项UI界面效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/ionicons.min.css">
<style>
@charset "UTF-8";
html {
box-sizing:border-box
}
*,*:before,*:after {
box-sizing:inherit
}
* {
outline:0
}
body {
background:linear-gradient(45deg,#13495f,#764be2,#8373c6,#77d3b9);
background-attachment:fixed;
height:100vh;
padding:3rem 0;
margin:0;
color:#555;
font-family:"Lato",sans-serif;
font-size:14px
}
.container {
width:90%;
margin:auto
}
.mobile-wrapper {
background:#fff;
z-index:1;
position:relative;
width:380px;
min-height:100%;
margin:auto;
padding:10px 0 20px;
border-radius:10px;
box-shadow:0 10px 30px -10px #000;
overflow:hidden
}
.header {
padding-bottom:15px;
margin-bottom:40px
}
.header .container {
position:relative
}
.header .container span {
color:#444;
font-family:"Ramabhadra";
font-size:21px;
font-weight:700
}
.header .container h1 {
margin-top:5px;
color:#919294;
font-size:13px;
font-weight:300
}
.header .container .menu-toggle {
width:25px;
height:25px;
background:#fff;
padding:24px;
border-radius:50%;
direction:rtl;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 30px -14px #000;
position:absolute;
top:0;
right:0;
cursor:pointer
}
.header .container .menu-toggle span {
display:block;
width:25px;
height:2px;
background:#777;
border-radius:2px;
transition:all 300ms ease
}
.header .container .menu-toggle span:not(:last-child) {
margin-bottom:5px
}
.header .container .menu-toggle span:first-child {
width:20px
}
.header .container .menu-toggle span:last-child {
width:15px
}
.header .con.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0