mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-08 18:48:42 +00:00
96d4a3ecf7
Due to historical reasons, the code is in subfolder "1". With SVN removal, we place the code back and remove the annoying "1" folder.
31 lines
989 B
CSS
31 lines
989 B
CSS
.blog-content-md-editor {
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.blog-content-md-editor-toolbar {
|
|
background: -moz-linear-gradient(top, rgba(238,238,238,1) 0%, rgba(204,204,204,1) 100%);
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(238,238,238,1)), color-stop(100%,rgba(204,204,204,1)));
|
|
background: -webkit-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%);
|
|
background: -o-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%);
|
|
background: -ms-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%);
|
|
background: linear-gradient(to bottom, rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%);
|
|
padding: 5px 5px 5px 5px;
|
|
}
|
|
.blog-content-md-editor-in {
|
|
width: 100%;
|
|
height: 500px;
|
|
}
|
|
.blog-content-md-editor-preview {
|
|
width: 100%;
|
|
height: 500px;
|
|
}
|
|
.blog-content-md-editor-preview iframe {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.blog-content-md-editor .CodeMirror{
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|