blog-editor.css 989 B

123456789101112131415161718192021222324252627282930
  1. .blog-content-md-editor {
  2. box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  3. }
  4. .blog-content-md-editor-toolbar {
  5. background: -moz-linear-gradient(top, rgba(238,238,238,1) 0%, rgba(204,204,204,1) 100%);
  6. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(238,238,238,1)), color-stop(100%,rgba(204,204,204,1)));
  7. background: -webkit-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%);
  8. background: -o-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%);
  9. background: -ms-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%);
  10. background: linear-gradient(to bottom, rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%);
  11. padding: 5px 5px 5px 5px;
  12. }
  13. .blog-content-md-editor-in {
  14. width: 100%;
  15. height: 500px;
  16. }
  17. .blog-content-md-editor-preview {
  18. width: 100%;
  19. height: 500px;
  20. }
  21. .blog-content-md-editor-preview iframe {
  22. height: 100%;
  23. width: 100%;
  24. }
  25. .blog-content-md-editor .CodeMirror{
  26. height: 100%;
  27. width: 100%;
  28. }