加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.css 1.65 KB
一键复制 编辑 原始数据 按行查看 历史
Jiulong Hu 提交于 2018-01-19 01:28 . init
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
border: 0;
}
ul,
li {
list-style: none;
display: block;
padding: 0;
margin: 0;
}
#container {
width: 100%;
height: 100%;
overflow: hidden;
position: relative;
}
.info {
position: absolute;
right: 20px;
top: 10px;
width: 40px;
height: 40px;
font-size: 26px;
border-radius: 50%;
background-color: #1890ff;
color: #fff;
text-align: center;
line-height: 40px;
display: block;
text-decoration: none;
}
.steps {
position: absolute;
right: 20px;
top: 50%;
margin-top: -120px;
}
.step::after {
content: '';
display: block;
width: 1px;
height: 40px;
margin: 10px 21px 10px;
background: #1890ff;
}
.step:nth-child(3)::after {
display: none;
}
.step-state {
width: 44px;
height: 44px;
border-radius: 50%;
background-color: transparent;
cursor: pointer;
line-height: 39px;
text-align: center;
font-size: 16px;
color: #1890ff;
background-color: #1890ff;
background-position: center;
}
.icon {
width: 36px;
height: 36px;
margin: 4px;
display: inline-block;
background-position: center;
background-repeat: none;
background-size: cover;
}
.icon.sphere {
background-image: url(dist/sphere.svg);
}
.icon.cylinder {
background-image: url(dist/cylinder.svg);
}
.icon.plane {
background-image: url(dist/plane.svg);
}
.icon.line {
background-image: url(dist/line.svg);
}
.icon.rect {
background-image: url(dist/rect.svg);
}
.step-state.active {
background-color: #1890ff;
color: #fff;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化