style.css 513 B

1234567891011121314151617181920212223242526272829303132333435
  1. body {
  2. visibility: visible !important;
  3. margin: 0;
  4. background: #fff;
  5. }
  6. .CodeMirror {
  7. height: calc(100vh - 20px);
  8. }
  9. form {
  10. height: 20px;
  11. position: fixed;
  12. right: 0;
  13. bottom: 0;
  14. left: 5px;
  15. font-size: 13px;
  16. background: #fff;
  17. }
  18. form>label {
  19. display: none;
  20. vertical-align: middle;
  21. }
  22. form>label>input,
  23. form>label>p {
  24. height: 19px;
  25. padding: 0;
  26. display: inline-block;
  27. margin: 0;
  28. vertical-align: middle;
  29. cursor: pointer;
  30. user-select: none;
  31. }