style.css 477 B

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