app.css 870 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .container {
  2. margin: 45px auto;
  3. max-width: 880px;
  4. }
  5. #input-container {
  6. margin-top: 20px;
  7. }
  8. #title {
  9. text-align: center;
  10. position: absolute;
  11. left: 50%;
  12. transform: translateX(-50%)
  13. }
  14. .markdown-body blockquote, .markdown-body dl, .markdown-body ol, .markdown-body p, .markdown-body pre, .markdown-body table, .markdown-body ul {
  15. margin-bottom: 0px;
  16. }
  17. .CodeMirror {
  18. font-size: 13px
  19. }
  20. .mditor {
  21. height: 400px;
  22. width: auto;
  23. }
  24. /*非固定行高模式*/
  25. .no-fix-height {
  26. }
  27. .no-fix-height .mditor {
  28. height: initial;
  29. padding-top: 0;
  30. border: 0;
  31. }
  32. .no-fix-height .mditor .body {
  33. height: initial;
  34. box-shadow: unset;
  35. }
  36. .no-fix-height .mditor .viewer {
  37. height: initial;
  38. padding-bottom: 10px;
  39. }
  40. .no-fix-height .mditor .head {
  41. display: none;
  42. }
  43. .no-fix-height #input-container {
  44. margin: 0 10px;
  45. }