ant-design/site/theme/static/markdown.less

418 lines
7.6 KiB
Plaintext
Raw Normal View History

2016-02-29 14:08:40 +08:00
.markdown {
2017-11-28 16:15:22 +08:00
color: @site-text-color;
2016-02-29 14:08:40 +08:00
font-size: 14px;
line-height: 2;
2016-02-29 14:08:40 +08:00
}
2016-03-15 17:40:31 +08:00
.highlight {
line-height: 1.5;
2016-02-29 14:08:40 +08:00
}
.markdown img {
2018-12-07 16:17:45 +08:00
max-width: ~'calc(100% - 32px)';
}
.markdown p > img {
2017-12-29 15:24:55 +08:00
margin: 34px 0;
box-shadow: 0 8px 20px rgba(143, 168, 191, 0.35);
2016-02-29 14:08:40 +08:00
}
.markdown p > img.markdown-inline-image {
2019-07-19 19:11:51 +08:00
margin: 0;
box-shadow: none;
}
2016-02-29 14:08:40 +08:00
.markdown h1 {
margin-top: 8px;
margin-bottom: 20px;
2017-11-28 16:15:22 +08:00
color: @site-heading-color;
2016-07-17 15:20:30 +08:00
font-weight: 500;
font-size: 30px;
font-family: Avenir, @font-family, sans-serif;
line-height: 38px;
.subtitle {
2016-06-13 14:56:59 +08:00
margin-left: 12px;
}
2016-02-29 14:08:40 +08:00
}
.markdown h2 {
font-size: 24px;
line-height: 32px;
}
2016-02-29 14:08:40 +08:00
.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
clear: both;
2017-02-26 15:41:50 +08:00
margin: 1.6em 0 0.6em;
color: @site-heading-color;
2016-02-29 14:08:40 +08:00
font-weight: 500;
font-family: Avenir, @font-family, sans-serif;
2016-02-29 14:08:40 +08:00
}
2018-12-07 16:17:45 +08:00
.markdown h3 {
font-size: 18px;
}
.markdown h4 {
font-size: 16px;
}
.markdown h5 {
font-size: 14px;
}
.markdown h6 {
font-size: 12px;
}
2016-02-29 14:08:40 +08:00
.markdown hr {
clear: both;
2016-02-29 14:08:40 +08:00
height: 1px;
2018-09-16 15:39:41 +08:00
margin: 56px 0;
background: @site-border-color-split;
border: 0;
2016-02-29 14:08:40 +08:00
}
.markdown p,
.markdown pre {
margin: 1em 0;
}
.markdown ul > li {
2017-02-27 11:46:45 +08:00
margin-left: 20px;
padding-left: 4px;
list-style-type: circle;
2016-08-04 17:59:07 +08:00
&:empty {
display: none;
}
2016-02-29 14:08:40 +08:00
}
.markdown ol > li {
2017-02-27 11:46:45 +08:00
margin-left: 20px;
padding-left: 4px;
list-style-type: decimal;
2016-02-29 14:08:40 +08:00
}
2017-02-26 22:56:58 +08:00
.markdown ul > li > p,
.markdown ol > li > p {
margin: 0.2em 0;
2016-02-29 14:08:40 +08:00
}
.markdown code {
2016-11-01 15:02:48 +08:00
margin: 0 1px;
2018-12-07 16:17:45 +08:00
padding: 0.2em 0.4em;
font-size: 0.9em;
background: #f2f4f5;
2016-09-10 14:13:56 +08:00
border: 1px solid #eee;
border-radius: 3px;
2016-02-29 14:08:40 +08:00
}
.markdown pre {
2018-12-07 16:17:45 +08:00
font-family: 'Lucida Console', Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
background: #f2f4f5;
border-radius: @border-radius-sm;
2016-02-29 14:08:40 +08:00
}
.markdown pre code {
margin: 0;
2016-10-18 00:18:03 +08:00
padding: 0;
2016-05-10 14:44:23 +08:00
overflow: auto;
color: @site-text-color;
font-size: @font-size-base - 1px;
background: #f2f4f5;
border: none;
2016-02-29 14:08:40 +08:00
}
.markdown strong,
.markdown b {
font-weight: 500;
2016-02-29 14:08:40 +08:00
}
.markdown > table {
2016-04-18 13:43:33 +08:00
width: 100%;
2017-04-17 22:19:43 +08:00
margin: 8px 0 16px;
empty-cells: show;
border: 1px solid @site-border-color-split;
border-collapse: collapse;
border-spacing: 0;
2016-02-29 14:08:40 +08:00
}
.markdown > table th {
2017-02-26 15:41:50 +08:00
color: #5c6b77;
font-weight: 500;
white-space: nowrap;
background: rgba(0, 0, 0, 0.02);
2016-02-29 14:08:40 +08:00
}
.markdown > table th,
.markdown > table td {
padding: 16px 24px;
2016-02-29 14:08:40 +08:00
text-align: left;
border: 1px solid @site-border-color-split;
2016-02-29 14:08:40 +08:00
}
.markdown blockquote {
margin: 1em 0;
padding-left: 0.8em;
2017-11-28 16:15:22 +08:00
color: @site-text-color-secondary;
font-size: 90%;
2017-11-28 16:15:22 +08:00
border-left: 4px solid @site-border-color-split;
2016-02-29 14:08:40 +08:00
}
.markdown blockquote p {
margin: 0;
}
.markdown .anchor {
margin-left: 8px;
2016-02-29 14:08:40 +08:00
opacity: 0;
transition: opacity 0.3s ease;
}
2016-03-15 17:40:31 +08:00
.markdown .waiting {
color: #ccc;
2016-05-15 19:18:20 +08:00
cursor: not-allowed;
2016-03-15 17:40:31 +08:00
}
2016-08-19 16:11:32 +08:00
.markdown a.edit-button {
2016-08-17 18:33:19 +08:00
display: inline-block;
2018-09-10 14:51:18 +08:00
margin-left: 8px;
2017-05-28 15:35:49 +08:00
text-decoration: none;
2016-08-19 16:11:32 +08:00
i {
2017-11-28 16:15:22 +08:00
color: @site-text-color-secondary;
2016-08-19 16:11:32 +08:00
&:hover {
2016-11-13 18:58:02 +08:00
color: @primary-color;
2016-08-19 16:11:32 +08:00
}
}
2016-08-17 18:33:19 +08:00
.anticon {
display: block;
font-size: 16px;
2016-08-17 18:33:19 +08:00
}
}
2016-02-29 14:08:40 +08:00
.markdown h1:hover .anchor,
.markdown h2:hover .anchor,
.markdown h3:hover .anchor,
.markdown h4:hover .anchor,
.markdown h5:hover .anchor,
.markdown h6:hover .anchor {
display: inline-block;
opacity: 1;
2016-02-29 14:08:40 +08:00
}
.markdown > br,
.markdown > p > br {
clear: both;
2016-03-25 17:43:24 +08:00
}
2019-03-02 14:28:42 +08:00
.markdown.api-container {
overflow-x: auto;
2019-08-05 16:14:32 +08:00
2019-03-02 14:28:42 +08:00
table {
2019-08-05 16:14:32 +08:00
min-width: 720px;
2019-03-02 14:28:42 +08:00
margin: 2em 0;
2019-08-05 16:14:32 +08:00
font-size: @font-size-base - 1px;
2019-03-02 14:28:42 +08:00
font-family: @code-family;
line-height: @line-height-base;
2019-08-05 16:14:32 +08:00
border: 1px solid @border-color-split;
2019-03-02 14:28:42 +08:00
th,
td {
2019-08-05 16:14:32 +08:00
padding: 12px;
2019-03-02 14:28:42 +08:00
border-color: @border-color-split;
2019-04-15 22:44:51 +08:00
border-width: 1px 0;
2019-03-02 14:28:42 +08:00
}
2019-08-05 16:14:32 +08:00
2019-03-02 14:28:42 +08:00
th {
2019-08-05 16:14:32 +08:00
padding-top: 14px;
2019-03-02 14:28:42 +08:00
border-width: 0 0 2px 0;
}
2019-08-05 16:14:32 +08:00
tbody tr {
transition: all 0.3s;
&:hover {
background: rgba(60, 90, 100, 0.04);
}
2019-03-02 14:28:42 +08:00
}
2019-08-05 16:14:32 +08:00
td {
&:first-child {
width: 20%;
color: @gray-8;
font-weight: 600;
}
&:nth-child(3) {
width: 22%;
color: @magenta-7;
font-size: @font-size-base - 1px;
word-break: break-all;
}
&:nth-child(4) {
width: 16%;
2019-08-05 16:14:32 +08:00
font-size: @font-size-base - 1px;
}
2019-03-02 14:28:42 +08:00
}
2016-11-01 15:02:48 +08:00
}
hr {
margin: 12px 0;
}
2016-03-25 17:43:24 +08:00
}
.grid-demo,
2018-12-07 16:17:45 +08:00
[id^='components-grid-demo-'] {
2016-04-11 11:55:44 +08:00
.demo-row,
2016-04-10 15:39:24 +08:00
.code-box-demo .demo-row {
margin-bottom: 8px;
overflow: hidden;
2018-12-07 16:17:45 +08:00
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%
);
2016-04-10 15:39:24 +08:00
}
2016-06-06 11:40:54 +08:00
.ant-row-flex,
.code-box-demo .ant-row-flex {
2017-02-26 15:41:50 +08:00
background: #f5f5f5;
2016-04-10 15:39:24 +08:00
}
2016-06-06 11:40:54 +08:00
.ant-row > div,
.code-box-demo .ant-row > div,
.ant-row-flex > div,
.code-box-demo .ant-row-flex > div {
2016-04-10 15:39:24 +08:00
min-height: 30px;
margin-top: 8px;
margin-bottom: 8px;
padding: 5px 0;
2016-04-10 15:39:24 +08:00
color: #fff;
text-align: center;
border-radius: 0;
2016-04-10 15:39:24 +08:00
}
2016-06-06 11:40:54 +08:00
.code-box-demo .ant-row > div:not(.gutter-row),
.code-box-demo .ant-row-flex > div:not(.gutter-row) {
padding: 16px 0;
background: #00a0e9;
2018-12-07 16:17:45 +08:00
&:nth-child(2n + 1) {
2017-02-26 15:41:50 +08:00
background: fade(#00a0e9, 70%);
}
2016-04-10 15:39:24 +08:00
}
2016-06-06 11:40:54 +08:00
.ant-row .demo-col,
.code-box-demo .ant-row .demo-col {
margin-top: 0;
margin-bottom: 0;
padding: 30px 0;
2016-04-10 15:39:24 +08:00
color: #fff;
font-size: 18px;
text-align: center;
2016-04-10 15:39:24 +08:00
border: none;
}
2016-06-06 11:40:54 +08:00
.ant-row .demo-col-1,
.ant-row .demo-col-1 {
2017-02-26 15:41:50 +08:00
background: fade(#00a0e9, 70%);
2016-04-10 15:39:24 +08:00
}
2016-06-06 11:40:54 +08:00
.ant-row .demo-col-2,
.code-box-demo .ant-row .demo-col-2 {
2017-02-26 15:41:50 +08:00
background: fade(#00a0e9, 50%);
2016-04-10 15:39:24 +08:00
}
2016-06-06 11:40:54 +08:00
.ant-row .demo-col-3,
2017-02-26 15:41:50 +08:00
.code-box-demo .ant-row .demo-col-3 {
2016-04-10 15:39:24 +08:00
color: #999;
background: rgba(255, 255, 255, 0.2);
2016-04-10 15:39:24 +08:00
}
2016-06-06 11:40:54 +08:00
.ant-row .demo-col-4,
.code-box-demo .ant-row .demo-col-4 {
2017-02-26 15:41:50 +08:00
background: fade(#00a0e9, 60%);
2016-04-10 15:39:24 +08:00
}
2016-06-06 11:40:54 +08:00
.ant-row .demo-col-5,
.code-box-demo .ant-row .demo-col-5 {
2016-04-10 15:39:24 +08:00
color: #999;
background: rgba(255, 255, 255, 0.5);
2016-04-10 15:39:24 +08:00
}
.code-box-demo .height-100 {
height: 100px;
line-height: 100px;
2016-04-10 15:39:24 +08:00
}
.code-box-demo .height-50 {
height: 50px;
line-height: 50px;
2016-04-10 15:39:24 +08:00
}
.code-box-demo .height-120 {
height: 120px;
line-height: 120px;
2016-04-10 15:39:24 +08:00
}
.code-box-demo .height-80 {
height: 80px;
line-height: 80px;
2016-04-10 15:39:24 +08:00
}
2017-12-04 21:48:42 +08:00
}
2016-04-18 16:59:04 +08:00
2017-12-04 21:48:42 +08:00
// For Changelog
.markdown ul.ant-timeline {
2017-12-04 23:38:31 +08:00
line-height: 2;
2017-12-04 21:48:42 +08:00
li.ant-timeline-item {
margin: 0;
padding: 0 0 30px;
list-style: none;
2017-12-04 21:48:42 +08:00
.ant-timeline-item-content {
position: relative;
top: -14px;
padding-left: 32px;
font-size: 14px;
2017-12-04 21:48:42 +08:00
> h2 {
margin-top: 0;
2018-10-28 21:04:11 +08:00
padding-top: 4px;
2016-04-18 16:59:04 +08:00
}
}
2017-12-04 21:48:42 +08:00
}
li.ant-timeline-item:first-child {
margin-top: 40px;
2016-04-18 16:59:04 +08:00
}
}