div+css实现垂直时间线代码
代码语言:html
所属分类:布局界面
代码描述:div+css实现垂直时间线代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/all.5.15.3.css">
<style>
@import url("https://fonts.googleapis.com/css2?family=PT+Sans&display=swap");
body {
background: #e8cbc0;
}
.container {
background: #232931;
width: 540px;
height: 500px;
margin: 0 auto;
position: relative;
margin-top: 10%;
box-shadow: 2px 5px 20px rgba(119, 119, 119, 0.5);
}
.leftbox {
top: -5%;
left: 5%;
position: absolute;
width: 15%;
height: 110%;
background-color: #50d890;
box-shadow: 3px 3px 15px rgba(119, 119, 119, 0.5);
}
nav {
margin: 2.6em auto;
}
nav a {
list-style: none;
padding: 35px;
color: #232931;
font-size: 1.1em;
display: block;
transition: all 0.5s ease-in-out;
}
.rightbox {
padding: 0em 34rem 0em 0em;
height: 100%;
}
.rb-container {
font-family: "PT Sans", sans-serif;
width: 50%;
margin: auto;
display: block;
position: relative;
}
.rb-container ul.rb {
margin: 2.5em 0;
padding: 0;
display: inline-block;
}
.rb-container ul.rb li {
list-style: none;
margin: auto;
margin-left: 10em;
min-height: 50px;
border-left: 1px dashed #fff;
padding: 0 0 50px 30px;
position: relative;
}
.rb-container ul.rb li:last-child {
border-left: 0;
}
.rb-container ul.rb li::before {
position: absolute;
left: -18px;
top: -5px;
content: " ";
border: 8px solid rgba(255, 255, 2.........完整代码请登录后点击上方下载按钮下载查看
网友评论0