2019-11-01 17:16:40 +08:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
input, button, textarea {
|
|
|
|
font-family: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
em {
|
|
|
|
font-style: normal !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
height: 100%;
|
|
|
|
font-family: 'PingFang SC', BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.el-message__icon {
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top {
|
|
|
|
height: 60px;
|
|
|
|
padding: 10px 20px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.web-title {
|
|
|
|
margin: 0 15px 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.web-icon {
|
|
|
|
width: auto;
|
|
|
|
height: 1.5rem;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
#editor {
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
border: none;
|
|
|
|
width: 100%;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ctrl {
|
|
|
|
flex-basis: 60px;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.preview-wrapper {
|
|
|
|
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
|
|
|
|
padding: 0;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
display: flex;
|
|
|
|
overflow: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-section {
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hint {
|
|
|
|
opacity: 0.6;
|
|
|
|
margin: 20px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.preview {
|
|
|
|
margin: 0 -20px;
|
|
|
|
width: 375px;
|
|
|
|
padding: 20px;
|
|
|
|
font-size: 14px;
|
2019-12-10 19:16:05 +08:00
|
|
|
box-sizing: border-box;
|
2019-11-01 17:16:40 +08:00
|
|
|
outline: none;
|
|
|
|
box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.preview table {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
border-collapse: collapse;
|
|
|
|
display: table;
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
2019-12-26 22:30:20 +08:00
|
|
|
/*
|
|
|
|
.preview table tr:nth-child(even){
|
|
|
|
background: rgb(250, 250, 250);
|
|
|
|
}
|
|
|
|
*/
|
2019-11-01 17:16:40 +08:00
|
|
|
.select-item-left {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select-item-right {
|
|
|
|
float: right;
|
|
|
|
color: #8492a6;
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror {
|
2019-12-10 19:16:05 +08:00
|
|
|
height: 100% !important;
|
2019-11-01 17:16:40 +08:00
|
|
|
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 20px;
|
2019-12-10 19:16:05 +08:00
|
|
|
width: 100% !important;
|
2019-11-01 17:16:40 +08:00
|
|
|
font-family: 'PingFang SC', BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ele ui */
|
|
|
|
.el-form-item {
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
}
|
|
|
|
|
2019-12-28 16:25:30 +08:00
|
|
|
.el-tooltip {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2019-11-01 17:16:40 +08:00
|
|
|
/*wechat code block*/
|
|
|
|
.rich_media_content .code-snippet *, .rich_media_content .code-snippet__fix * {
|
|
|
|
max-width: 1000% !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.code-snippet__fix {
|
|
|
|
word-wrap: break-word !important;
|
2019-11-01 19:27:56 +08:00
|
|
|
font-size: 14px;
|
2019-11-10 19:57:48 +08:00
|
|
|
margin: 10px 8px;
|
2019-11-01 17:16:40 +08:00
|
|
|
color: #333;
|
|
|
|
position: relative;
|
2020-05-17 23:04:16 +08:00
|
|
|
background-color: rgb(238,238,238);
|
2019-11-01 17:16:40 +08:00
|
|
|
border: 1px solid #f0f0f0;
|
|
|
|
border-radius: 2px;
|
|
|
|
display: flex;
|
2019-11-06 10:38:05 +08:00
|
|
|
line-height: 24px;
|
2019-11-01 17:16:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.code-snippet__fix .code-snippet__line-index {
|
|
|
|
counter-reset: line;
|
|
|
|
flex-shrink: 0;
|
|
|
|
height: 100%;
|
|
|
|
padding: 1em;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.code-snippet__fix .code-snippet__line-index li {
|
|
|
|
list-style-type: none;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.code-snippet__fix .code-snippet__line-index li::before {
|
|
|
|
min-width: 1.5em;
|
|
|
|
text-align: right;
|
|
|
|
left: -2.5em;
|
|
|
|
counter-increment: line;
|
|
|
|
content: counter(line);
|
|
|
|
display: inline;
|
|
|
|
color: rgba(0, 0, 0, 0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
.code-snippet__fix pre {
|
|
|
|
overflow-x: auto;
|
|
|
|
padding: 1em 1em 1em 1em;
|
|
|
|
white-space: normal;
|
|
|
|
flex: 1;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
}
|
|
|
|
|
|
|
|
.code-snippet__fix code {
|
|
|
|
text-align: left;
|
|
|
|
font-size: 14px;
|
|
|
|
white-space: pre;
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
|
|
|
}
|
2019-11-05 19:31:36 +08:00
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 6px;
|
2019-11-06 10:38:05 +08:00
|
|
|
height: 6px;
|
2019-11-05 19:31:36 +08:00
|
|
|
background-color: #FFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
border-radius: 6px;
|
2019-11-06 11:19:05 +08:00
|
|
|
background-color: rgba(200, 200, 200, 0.3);
|
2019-11-05 19:31:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
border-radius: 6px;
|
|
|
|
background-color: rgba(144, 146, 152, 0.5);
|
|
|
|
transition: background-color .3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
background-color: rgba(144, 146, 152, 0.5);
|
2019-11-05 21:32:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-vscrollbar:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-scroll, .preview-wrapper {
|
2020-05-17 22:19:45 +08:00
|
|
|
overflow: unset;
|
|
|
|
overflow-y: scroll;
|
2019-11-05 19:31:36 +08:00
|
|
|
}
|