manual-markdown
Version:
Markdown 是一种轻量级的标记语言。它允许使用易读易写的纯文本格式编写文档,然后转换成 HTML 文档。
23 lines (22 loc) • 503 B
CSS
.divider-content-summary {
position: absolute;
top: 0;
right: 0;
height: 100%;
width: 5px;
display: table;
cursor: col-resize;
color: #ccc;
-webkit-transition: color 350ms ease;
-moz-transition: color 350ms ease;
-o-transition: color 350ms ease;
transition: color 350ms ease
}
.divider-content-summary:hover {
color: #444;
}
.divider-content-summary__icon {
display: table-cell;
vertical-align: middle;
text-align: center;
}