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

325 lines
6.8 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 {
max-width: ~"calc(100% - 32px)";
}
.markdown p > img {
margin: 2.4em 1em;
box-shadow: 0 8px 20px rgba(143, 168, 191, 0.35);
2016-02-29 14:08:40 +08:00
}
.markdown h1 {
2017-11-28 16:15:22 +08:00
color: @site-heading-color;
2016-07-17 15:20:30 +08:00
font-weight: 500;
margin-bottom: 20px;
2016-04-18 13:43:33 +08:00
margin-top: 8px;
2017-03-31 13:45:16 +08:00
font-family: Lato, @font-family;
font-size: 30px;
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 {
2017-11-28 16:15:22 +08:00
color: @site-heading-color;
2017-03-31 13:45:16 +08:00
font-family: Lato, @font-family;
2017-02-26 15:41:50 +08:00
margin: 1.6em 0 0.6em;
2016-02-29 14:08:40 +08:00
font-weight: 500;
clear: both;
}
.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 {
2017-02-27 11:46:45 +08:00
list-style-type: circle;
margin-left: 20px;
padding-left: 4px;
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
list-style-type: decimal;
margin-left: 20px;
padding-left: 4px;
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;
2017-11-28 16:15:22 +08:00
background: #f2f4f5;
2016-09-10 14:13:56 +08:00
padding: .2em .4em;
2016-04-26 16:14:07 +08:00
border-radius: 3px;
2016-10-07 20:41:51 +08:00
font-size: .9em;
2016-09-10 14:13:56 +08:00
border: 1px solid #eee;
2016-02-29 14:08:40 +08:00
}
.markdown pre {
border-radius: @border-radius-sm;
2017-11-28 16:15:22 +08:00
background: #f2f4f5;
2016-11-18 13:55:28 +08:00
font-family: "Lucida Console", Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
2016-02-29 14:08:40 +08:00
}
.markdown pre code {
border: none;
2017-11-28 16:15:22 +08:00
background: #f2f4f5;
2016-02-29 14:08:40 +08:00
margin: 0;
2016-10-18 00:18:03 +08:00
padding: 0;
font-size: @font-size-base;
2017-11-28 16:15:22 +08:00
color: @site-text-color;
2016-05-10 14:44:23 +08:00
overflow: auto;
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 {
border-collapse: collapse;
2017-02-26 15:41:50 +08:00
border-spacing: 0;
2016-02-29 14:08:40 +08:00
empty-cells: show;
2017-11-28 16:15:22 +08:00
border: 1px solid @site-border-color-split;
2016-04-18 13:43:33 +08:00
width: 100%;
2017-04-17 22:19:43 +08:00
margin: 8px 0 16px;
2016-02-29 14:08:40 +08:00
}
.markdown > table th {
white-space: nowrap;
2017-02-26 15:41:50 +08:00
color: #5c6b77;
font-weight: 500;
background: rgba(0, 0, 0, 0.02);
2016-02-29 14:08:40 +08:00
}
.markdown > table th,
.markdown > table td {
2017-11-28 16:15:22 +08:00
border: 1px solid @site-border-color-split;
padding: 16px 24px;
2016-02-29 14:08:40 +08:00
text-align: left;
}
.markdown blockquote {
font-size: 90%;
2017-11-28 16:15:22 +08:00
color: @site-text-color-secondary;
border-left: 4px solid @site-border-color-split;
2016-02-29 14:08:40 +08:00
padding-left: 0.8em;
margin: 1em 0;
}
.markdown blockquote p {
margin: 0;
}
.markdown .anchor {
opacity: 0;
transition: opacity 0.3s ease;
margin-left: 8px;
}
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
line-height: 12px;
display: inline-block;
margin-left: 10px;
height: 12px;
2017-05-28 15:35:49 +08:00
text-decoration: none;
font-weight: 400;
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 {
opacity: 1;
display: inline-block;
}
.markdown > br,
.markdown > p > br {
clear: both;
2016-03-25 17:43:24 +08:00
}
.markdown.api-container table {
font-size: @font-size-base;
line-height: @line-height-base;
2016-11-01 15:02:48 +08:00
td:first-child {
font-weight: 500;
width: 20%;
2016-12-05 13:09:05 +08:00
font-family: "Lucida Console", Consolas, Menlo, Courier, monospace;
2016-11-01 15:02:48 +08:00
}
td:nth-child(3) {
2017-01-15 13:15:30 +08:00
width: 22%;
2016-11-01 15:02:48 +08:00
font-size: 12px;
2016-12-05 13:09:05 +08:00
font-family: "Lucida Console", Consolas, Menlo, Courier, monospace;
2016-11-01 15:02:48 +08:00
}
td:last-child {
2017-01-15 13:15:30 +08:00
width: 13%;
2016-11-01 15:02:48 +08:00
font-size: 12px;
2016-12-05 13:09:05 +08:00
font-family: "Lucida Console", Consolas, Menlo, Courier, monospace;
2016-11-01 15:02:48 +08:00
}
2016-03-25 17:43:24 +08:00
}
.grid-demo,
[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 {
2017-02-26 15:41:50 +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-05-22 01:38:49 +08:00
overflow: hidden;
margin-bottom: 8px;
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
padding: 5px 0;
text-align: center;
border-radius: 0;
2016-04-10 15:39:24 +08:00
min-height: 30px;
margin-top: 8px;
margin-bottom: 8px;
2016-04-10 15:39:24 +08:00
color: #fff;
}
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) {
2017-02-26 15:41:50 +08:00
background: #00a0e9;
padding: 16px 0;
&: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 {
2016-04-10 15:39:24 +08:00
text-align: center;
padding: 30px 0;
2016-04-10 15:39:24 +08:00
color: #fff;
font-size: 18px;
border: none;
margin-top: 0;
margin-bottom: 0;
}
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
background: rgba(255, 255, 255, 0.2);
color: #999;
}
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
background: rgba(255, 255, 255, 0.5);
color: #999;
}
.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 {
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: 2px;
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
}
}