ant-design-vue/examples/index.less

63 lines
1.0 KiB
Plaintext
Raw Normal View History

2018-01-25 08:29:23 +00:00
@import './theme/static/index.less';
2018-01-23 10:55:39 +00:00
.site {
2018-01-22 13:06:51 +00:00
display: flex;
2018-02-01 06:23:59 +00:00
flex-direction: column;
2018-01-23 10:55:39 +00:00
.nav {
2018-01-22 13:06:51 +00:00
width: 200px;
}
2018-01-23 10:55:39 +00:00
.content {
2018-01-22 13:06:51 +00:00
flex: 1;
2018-02-01 06:23:59 +00:00
}
#header {
padding: 0 50px;
}
.main-wrapper {
display: flex;
flex: 1;
2018-01-22 13:06:51 +00:00
}
2018-01-23 10:55:39 +00:00
}
2018-01-25 08:29:23 +00:00
.api-container table {
border-collapse: collapse;
border-spacing: 0;
empty-cells: show;
border: 1px solid @site-border-color-split;
width: 100%;
margin: 8px 0 16px;
2018-01-23 10:55:39 +00:00
}
2018-01-25 08:29:23 +00:00
.api-container table th {
white-space: nowrap;
color: #5c6b77;
font-weight: 500;
background: rgba(0, 0, 0, 0.02);
2018-01-23 10:55:39 +00:00
}
2018-01-25 08:29:23 +00:00
.api-container table th,
.api-container table td {
border: 1px solid @site-border-color-split;
padding: 16px 24px;
text-align: left;
2018-01-23 10:55:39 +00:00
}
2018-01-25 08:29:23 +00:00
.code-box .highlight-wrapper {
display: block;
2018-01-23 10:55:39 +00:00
}
2018-01-25 08:29:23 +00:00
.code-box-meta > h4 {
position: absolute;
top: -14px;
padding: 1px 8px;
margin-left: -8px;
color: #777;
border-radius: 2px 2px 0 0;
background: #fff;
2018-01-23 10:55:39 +00:00
font-size: 14px;
2018-01-25 08:29:23 +00:00
width: auto;
2018-01-23 10:55:39 +00:00
}
2018-01-25 08:29:23 +00:00
.code-box-code-copy {
opacity: 1;
position: absolute;
right: 15px;
top: 10px;
2018-01-23 10:55:39 +00:00
}
2018-03-11 07:27:34 +00:00