editor.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /* 2017-7-26 11:44:02 | 修改 木遥(微信: http://marsgis.cn/weixin.html ) */
  2. html,
  3. body,
  4. .wrapper {
  5. height: 100% !important;
  6. }
  7. .wrapper {
  8. overflow: hidden;
  9. }
  10. .main-header {
  11. position: fixed;
  12. width: 100%;
  13. top: 0;
  14. }
  15. .edit-container {
  16. min-height: 52px;
  17. background-color: #f9f9f9;
  18. position: absolute;
  19. top: 0;
  20. bottom: 0;
  21. left: 0;
  22. right: 0;
  23. margin-top: 52px;
  24. }
  25. section.content {
  26. min-height: 100%;
  27. width: 100%;
  28. padding: 0;
  29. position: absolute;
  30. top: 0;
  31. bottom: 0;
  32. }
  33. .content .pane {
  34. position: relative;
  35. padding: 0;
  36. }
  37. #codePane {
  38. height: 100%;
  39. box-shadow: 2px 0px 6px #cccccc;
  40. }
  41. .codePaneTool {
  42. position: absolute;
  43. width: 100%;
  44. height: 40px;
  45. line-height: 24px;
  46. z-index: 800;
  47. background-color: white;
  48. padding: 8px 22px;
  49. box-shadow: 0 2px 10px #dddddd;
  50. }
  51. #editor {
  52. font-family: Consolas, monaco, "Courier New", Courier, monospace;
  53. position: absolute;
  54. top: 42px;
  55. bottom: 0;
  56. right: 0;
  57. width: 100%;
  58. line-height: 18px;
  59. font-size: 13px;
  60. }
  61. #previewPane {
  62. height: 100%;
  63. }
  64. #innerPage {
  65. width: 100%;
  66. height: 100%;
  67. border: none;
  68. }
  69. .editorBtn {
  70. display: inline-block;
  71. width: 60px;
  72. height: 24px;
  73. line-height: 24px;
  74. text-align: center;
  75. color: #0083cb;
  76. float: right;
  77. cursor: pointer;
  78. }
  79. .editorBtn:hover {
  80. font-weight: bold;
  81. }
  82. #showCodeBtn {
  83. cursor: pointer;
  84. z-index: 900;
  85. position: absolute;
  86. bottom: 35px;
  87. left: 0px;
  88. padding: 0 10px;
  89. min-width: 54px;
  90. height: 30px;
  91. line-height: 30px;
  92. margin: 4px;
  93. text-align: center;
  94. background-color: rgba(34, 45, 50, 0.7);
  95. color: #fff;
  96. }
  97. #showCodeBtn:hover {
  98. background-color: rgba(34, 45, 50, 0.9);
  99. }
  100. @media screen and (max-width: 992px) {
  101. #codePane {
  102. display: none;
  103. }
  104. .codePaneTool {
  105. padding: 8px 68px 8px 20px;
  106. }
  107. }
  108. ::-webkit-scrollbar {
  109. width: 8px;
  110. }
  111. ::-webkit-scrollbar-thumb {
  112. border-radius: 12px;
  113. background: #e7e7e7;
  114. -webkit-box-shadow: inset 0 0 6px #d1cfcf;
  115. }