react实现的一个简洁邮箱ui界面效果代码
代码语言:html
所属分类:布局界面
代码描述:react实现的一个简洁邮箱ui界面效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> React - Inbox</title>
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/font-awesome-4.7.0/css/font-awesome.min.css">
<style>
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600);
*, *:before, *:after {
box-sizing: border-box;
}
body {
background: #eee;
font-family: "Open Sans", Arial, sans-serif;
font-size: 14px;
line-height: 150%;
}
.truncate {
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 100%;
}
.disclaimer {
margin: 0 auto 50px;
text-align: center;
width: 400px;
}
.btn {
border: none;
cursor: pointer;
display: block;
font-family: "Open Sans", Arial, sans-serif;
font-size: 16px;
outline: none;
padding: 15px;
transition: all .1s linear;
}
.wrapper {
box-shadow: 0 4px 20px rgba(51, 51, 51, 0.2);
margin: 50px auto;
overflow: auto;
width: 1024px;
}
.wrapper .inbox-container {
float: left;
height: 500px;
width: calc(100% - 200px);
}
#sidebar {
background: #34393d;
float: left;
height: 500px;
width: 200px;
}
#sidebar .sidebar__inboxes {
margin-top: 50px;
}
#sidebar .sidebar__inboxes .item-count {
background: #34393d;
border-radius: 5px;
float: right;
padding: 2px 8px;
margin: -2px -8px;
}
#sidebar .sidebar__inboxes li a {
color: #fff;
cursor: pointer;
display: block;
margin-bottom: 10px;
padding: 15px;
text-decoration: none;
transition: background .1s linear;
width: 100%;
}
#sidebar .sidebar__inboxes li a:hover {
background: #404549;
}
#sidebar .sidebar__inboxes .fa {
margin-right: 10px;
}
#sidebar .btn.compose {
color: #fff;
padding: 30px 15px;
text-align: center;
text-decoration: none;
transition: all .1s linear;
width: 100%;
background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjEuMCIgeDI9IjAuMCIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwOWZjNCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzBjN2VhZCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUi.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0