2016-03-15 17:40:31 +08:00
|
|
|
.code-boxes-col-1-1 {
|
2016-04-18 13:43:33 +08:00
|
|
|
width: 100%;
|
2016-03-07 14:31:47 +08:00
|
|
|
}
|
2016-03-15 17:40:31 +08:00
|
|
|
|
|
|
|
.code-boxes-col-2-1 {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2016-03-07 14:31:47 +08:00
|
|
|
}
|
|
|
|
|
2016-02-29 14:08:40 +08:00
|
|
|
.code-box {
|
2016-11-18 11:18:14 +08:00
|
|
|
border: 1px solid @border-color-split;
|
2016-11-13 18:58:02 +08:00
|
|
|
border-radius: @border-radius-base;
|
2016-02-29 14:08:40 +08:00
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
2017-02-26 15:41:50 +08:00
|
|
|
margin: 0 0 16px;
|
2017-03-13 15:01:53 +08:00
|
|
|
transition: all .2s;
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
&:target {
|
|
|
|
border: 1px solid @primary-color;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
&-expand-trigger {
|
|
|
|
cursor: pointer;
|
2016-08-17 12:06:38 +08:00
|
|
|
font-size: 14px;
|
2017-03-13 15:01:53 +08:00
|
|
|
color: #9199ac;
|
|
|
|
margin-left: 5px;
|
|
|
|
opacity: .8;
|
|
|
|
transition: all .3s;
|
|
|
|
top: -2px;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&-active {
|
|
|
|
color: #3b4357;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-title {
|
|
|
|
position: absolute;
|
|
|
|
top: -14px;
|
|
|
|
padding: 1px 8px;
|
|
|
|
margin-left: -8px;
|
|
|
|
color: #777;
|
2017-04-15 15:32:51 +08:00
|
|
|
border-radius: @border-radius-base @border-radius-base 0 0;
|
2017-03-13 15:01:53 +08:00
|
|
|
background: #fff;
|
|
|
|
transition: background-color .4s;
|
|
|
|
|
|
|
|
a,
|
|
|
|
a:hover {
|
|
|
|
color: @text-color;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2016-08-20 20:36:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
a.edit-button {
|
|
|
|
position: absolute;
|
|
|
|
right: -16px;
|
|
|
|
top: 7px;
|
|
|
|
font-size: 12px;
|
|
|
|
transform: scale(0.9);
|
|
|
|
background: #fff;
|
|
|
|
padding-right: 6px;
|
2017-05-28 15:35:49 +08:00
|
|
|
text-decoration: none;
|
2016-08-17 12:06:38 +08:00
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
&-demo {
|
|
|
|
border-bottom: 1px solid @border-color-split;
|
|
|
|
padding: 42px 20px 50px;
|
|
|
|
}
|
2016-03-23 22:36:26 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
iframe {
|
|
|
|
width: 100%;
|
|
|
|
border: 0;
|
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
&-meta {
|
|
|
|
&.markdown {
|
|
|
|
position: relative;
|
|
|
|
padding: 17px 16px 15px 20px;
|
|
|
|
border-radius: 0 0 @border-radius-base @border-radius-base;
|
|
|
|
transition: background-color .4s;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4,
|
|
|
|
section& p {
|
|
|
|
margin: 4px 0;
|
|
|
|
width: 98%;
|
|
|
|
}
|
|
|
|
|
|
|
|
> p {
|
|
|
|
font-size: 12px;
|
|
|
|
margin: 0.5em 0;
|
|
|
|
padding-right: 25px;
|
|
|
|
width: 100%;
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
|
|
|
}
|
2016-03-28 19:12:51 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
&.expand &-meta {
|
|
|
|
border-radius: 0;
|
|
|
|
border-bottom: 1px dashed @border-color-split;
|
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
.collapse {
|
|
|
|
position: absolute;
|
|
|
|
right: 14px;
|
|
|
|
bottom: 22px;
|
|
|
|
cursor: pointer;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 16px;
|
|
|
|
opacity: 0.5;
|
|
|
|
text-align: center;
|
|
|
|
transition: all 0.3s;
|
|
|
|
color: #999;
|
|
|
|
background: #fff;
|
|
|
|
user-select: none;
|
|
|
|
border-radius: 100%;
|
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
&.expand .collapse {
|
|
|
|
color: shade(@primary-color, 20%);
|
|
|
|
transform: rotate(-180deg);
|
2016-03-25 17:07:00 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
.highlight-wrapper {
|
|
|
|
display: none;
|
|
|
|
overflow: auto;
|
|
|
|
border-radius: 0 0 @border-radius-base @border-radius-base;
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
&-expand {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
.highlight {
|
|
|
|
position: relative;
|
|
|
|
pre {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
&:not(:first-child) {
|
|
|
|
border-top: 1px dashed @border-color-split;
|
|
|
|
}
|
|
|
|
}
|
2016-03-25 17:07:00 +08:00
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
&-code-copy {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
right: 12px;
|
|
|
|
margin: 0 !important;
|
|
|
|
font-size: 14px;
|
|
|
|
cursor: pointer;
|
|
|
|
color: #888;
|
|
|
|
transition: all .24s;
|
2016-06-02 21:52:48 +08:00
|
|
|
background: #fff;
|
2017-03-13 15:01:53 +08:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
line-height: 20px;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 20px;
|
2017-03-13 15:04:21 +08:00
|
|
|
opacity: 0;
|
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
&:hover {
|
|
|
|
color: @primary-color;
|
|
|
|
transform: scale(1.2);
|
|
|
|
}
|
|
|
|
&.anticon-check {
|
|
|
|
color: @green-6!important;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2016-05-27 11:48:08 +08:00
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2017-03-13 15:04:21 +08:00
|
|
|
.highlight-wrapper:hover &-code-copy {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2017-03-13 15:01:53 +08:00
|
|
|
pre {
|
|
|
|
margin: 0;
|
|
|
|
width: auto;
|
|
|
|
code {
|
|
|
|
border: none;
|
|
|
|
background: #fff;
|
|
|
|
}
|
2017-02-26 15:09:52 +08:00
|
|
|
}
|
2017-02-24 11:55:24 +08:00
|
|
|
}
|