You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
322 lines
6.6 KiB
322 lines
6.6 KiB
.markdown {
|
|
color: @text-color;
|
|
font-size: 14px;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.highlight {
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.markdown img {
|
|
vertical-align: middle;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.markdown h1 {
|
|
color: @heading-color;
|
|
font-weight: 500;
|
|
line-height: 40px;
|
|
margin-bottom: 24px;
|
|
margin-top: 8px;
|
|
font-family: Lato, @font-family;
|
|
|
|
.subtitle {
|
|
font-weight: normal;
|
|
font-size: 90%;
|
|
margin-left: 12px;
|
|
}
|
|
}
|
|
|
|
.markdown h2,
|
|
.markdown h3,
|
|
.markdown h4,
|
|
.markdown h5,
|
|
.markdown h6 {
|
|
color: @heading-color;
|
|
font-family: Lato, @font-family;
|
|
margin: 1.6em 0 0.6em;
|
|
font-weight: 500;
|
|
clear: both;
|
|
}
|
|
|
|
.markdown h1 { font-size: 28px; }
|
|
.markdown h2 { font-size: 22px; }
|
|
.markdown h3 { font-size: 18px; }
|
|
.markdown h4 { font-size: 16px; }
|
|
.markdown h5 { font-size: 14px; }
|
|
.markdown h6 { font-size: 12px; }
|
|
|
|
.markdown hr {
|
|
height: 1px;
|
|
border: 0;
|
|
background: #e9e9e9;
|
|
margin: 16px 0;
|
|
clear: both;
|
|
}
|
|
|
|
.markdown p,
|
|
.markdown pre {
|
|
margin: 1em 0;
|
|
}
|
|
|
|
.markdown ul > li {
|
|
list-style-type: circle;
|
|
margin-left: 20px;
|
|
padding-left: 4px;
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.markdown ol > li {
|
|
list-style-type: decimal;
|
|
margin-left: 20px;
|
|
padding-left: 4px;
|
|
}
|
|
|
|
.markdown ul > li > p,
|
|
.markdown ol > li > p {
|
|
margin: 0.2em 0;
|
|
}
|
|
|
|
.markdown code {
|
|
margin: 0 1px;
|
|
background: #f7f7f7;
|
|
padding: .2em .4em;
|
|
border-radius: 3px;
|
|
font-size: .9em;
|
|
border: 1px solid #eee;
|
|
}
|
|
|
|
.markdown pre {
|
|
border-radius: @border-radius-base;
|
|
background: #f7f7f7;
|
|
font-family: "Lucida Console", Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
|
}
|
|
|
|
.markdown pre code {
|
|
border: none;
|
|
background: #f7f7f7;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 13px;
|
|
color: @text-color;
|
|
overflow: auto;
|
|
}
|
|
|
|
.markdown strong,
|
|
.markdown b {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.markdown > table {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
empty-cells: show;
|
|
border: 1px solid #e9e9e9;
|
|
width: 100%;
|
|
margin: 8px 0 16px;
|
|
}
|
|
|
|
.markdown > table th {
|
|
white-space: nowrap;
|
|
color: #5c6b77;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.markdown > table th,
|
|
.markdown > table td {
|
|
border: 1px solid #e9e9e9;
|
|
padding: 8px 16px;
|
|
text-align: left;
|
|
}
|
|
|
|
.markdown > table th {
|
|
background: #f7f7f7;
|
|
}
|
|
|
|
.markdown blockquote {
|
|
font-size: 90%;
|
|
color: #999;
|
|
border-left: 4px solid #e9e9e9;
|
|
padding-left: 0.8em;
|
|
margin: 1em 0;
|
|
}
|
|
|
|
.markdown blockquote p {
|
|
margin: 0;
|
|
}
|
|
|
|
.markdown .anchor {
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.markdown .waiting {
|
|
color: #ccc;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.markdown a.edit-button {
|
|
line-height: 12px;
|
|
display: inline-block;
|
|
margin-left: 10px;
|
|
height: 12px;
|
|
text-decoration: none;
|
|
|
|
i {
|
|
color: #999;
|
|
|
|
&:hover {
|
|
color: @primary-color;
|
|
}
|
|
}
|
|
|
|
.anticon {
|
|
display: block;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
.markdown h1:hover .anchor,
|
|
.markdown h2:hover .anchor,
|
|
.markdown h3:hover .anchor,
|
|
.markdown h4:hover .anchor,
|
|
.markdown h5:hover .anchor,
|
|
.markdown h6:hover .anchor {
|
|
opacity: 1;
|
|
display: inline-block;
|
|
}
|
|
|
|
.markdown > br,
|
|
.markdown > p > br {
|
|
clear: both;
|
|
}
|
|
|
|
.markdown.api-container table {
|
|
font-size: 13px;
|
|
td:first-child {
|
|
background: #fcfcfc;
|
|
font-weight: 500;
|
|
width: 20%;
|
|
font-family: "Lucida Console", Consolas, Menlo, Courier, monospace;
|
|
}
|
|
td:nth-child(3) {
|
|
width: 22%;
|
|
font-size: 12px;
|
|
font-family: "Lucida Console", Consolas, Menlo, Courier, monospace;
|
|
}
|
|
td:last-child {
|
|
width: 13%;
|
|
font-size: 12px;
|
|
font-family: "Lucida Console", Consolas, Menlo, Courier, monospace;
|
|
}
|
|
}
|
|
|
|
.grid-demo,
|
|
[id^="components-grid-demo-"] {
|
|
.demo-row,
|
|
.code-box-demo .demo-row {
|
|
background-image: linear-gradient(90deg, #f5f5f5 4.16666667%, transparent 4.16666667%, transparent 8.33333333%, #f5f5f5 8.33333333%, #f5f5f5 12.5%, transparent 12.5%, transparent 16.66666667%, #f5f5f5 16.66666667%, #f5f5f5 20.83333333%, transparent 20.83333333%, transparent 25%, #f5f5f5 25%, #f5f5f5 29.16666667%, transparent 29.16666667%, transparent 33.33333333%, #f5f5f5 33.33333333%, #f5f5f5 37.5%, transparent 37.5%, transparent 41.66666667%, #f5f5f5 41.66666667%, #f5f5f5 45.83333333%, transparent 45.83333333%, transparent 50%, #f5f5f5 50%, #f5f5f5 54.16666667%, transparent 54.16666667%, transparent 58.33333333%, #f5f5f5 58.33333333%, #f5f5f5 62.5%, transparent 62.5%, transparent 66.66666667%, #f5f5f5 66.66666667%, #f5f5f5 70.83333333%, transparent 70.83333333%, transparent 75%, #f5f5f5 75%, #f5f5f5 79.16666667%, transparent 79.16666667%, transparent 83.33333333%, #f5f5f5 83.33333333%, #f5f5f5 87.5%, transparent 87.5%, transparent 91.66666667%, #f5f5f5 91.66666667%, #f5f5f5 95.83333333%, transparent 95.83333333%);
|
|
overflow: hidden;
|
|
margin-bottom: 8px;
|
|
}
|
|
.ant-row-flex,
|
|
.code-box-demo .ant-row-flex {
|
|
background: #f5f5f5;
|
|
}
|
|
.ant-row > div,
|
|
.code-box-demo .ant-row > div,
|
|
.ant-row-flex > div,
|
|
.code-box-demo .ant-row-flex > div {
|
|
padding: 5px 0;
|
|
text-align: center;
|
|
border-radius: 0;
|
|
min-height: 30px;
|
|
margin-top: 8px;
|
|
margin-bottom: 8px;
|
|
color: #fff;
|
|
}
|
|
.code-box-demo .ant-row > div:not(.gutter-row),
|
|
.code-box-demo .ant-row-flex > div:not(.gutter-row) {
|
|
background: #00a0e9;
|
|
padding: 16px 0;
|
|
&:nth-child(2n+1) {
|
|
background: fade(#00a0e9, 70%);
|
|
}
|
|
}
|
|
.ant-row .demo-col,
|
|
.code-box-demo .ant-row .demo-col {
|
|
text-align: center;
|
|
padding: 30px 0;
|
|
color: #fff;
|
|
font-size: 18px;
|
|
border: none;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
.ant-row .demo-col-1,
|
|
.ant-row .demo-col-1 {
|
|
background: fade(#00a0e9, 70%);
|
|
}
|
|
.ant-row .demo-col-2,
|
|
.code-box-demo .ant-row .demo-col-2 {
|
|
background: fade(#00a0e9, 50%);
|
|
}
|
|
.ant-row .demo-col-3,
|
|
.code-box-demo .ant-row .demo-col-3 {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
color: #999;
|
|
}
|
|
.ant-row .demo-col-4,
|
|
.code-box-demo .ant-row .demo-col-4 {
|
|
background: fade(#00a0e9, 60%);
|
|
}
|
|
.ant-row .demo-col-5,
|
|
.code-box-demo .ant-row .demo-col-5 {
|
|
background: rgba(255, 255, 255, 0.5);
|
|
color: #999;
|
|
}
|
|
.code-box-demo .height-100 {
|
|
height: 100px;
|
|
line-height: 100px;
|
|
}
|
|
.code-box-demo .height-50 {
|
|
height: 50px;
|
|
line-height: 50px;
|
|
}
|
|
.code-box-demo .height-120 {
|
|
height: 120px;
|
|
line-height: 120px;
|
|
}
|
|
.code-box-demo .height-80 {
|
|
height: 80px;
|
|
line-height: 80px;
|
|
}
|
|
}
|
|
|
|
// For Changelog
|
|
.markdown {
|
|
ul.ant-timeline {
|
|
li.ant-timeline-item {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0 0 30px;
|
|
.ant-timeline-item-content {
|
|
font-size: 14px;
|
|
padding-left: 32px;
|
|
position: relative;
|
|
top: -14px;
|
|
> h2 {
|
|
margin-top: 0;
|
|
padding-top: 0.5px;
|
|
}
|
|
}
|
|
}
|
|
li.ant-timeline-item:first-child {
|
|
margin-top: 40px;
|
|
}
|
|
}
|
|
}
|
|
|