index.css 548 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. body {
  2. margin: 0 0 0 0;
  3. }
  4. #edit-pane {
  5. position: fixed;
  6. top: 0;
  7. width: 40%;
  8. height: 100%;
  9. font-size: 16px;
  10. }
  11. #edit-pane #controls {
  12. color: #2e2e2e;
  13. position: absolute;
  14. right: 0;
  15. top: 0;
  16. z-index: 1;
  17. margin: 5px 5px 0 0;
  18. }
  19. #edit-pane #controls a {
  20. font-weight: bold;
  21. text-decoration: none;
  22. color: #2e2e2e;
  23. }
  24. #editor {
  25. width: 100%;
  26. height: 100%;
  27. font-size: 16px;
  28. }
  29. #preview {
  30. position: absolute;
  31. left: 40%;
  32. top: 0;
  33. right: 0;
  34. bottom: 0;
  35. }
  36. #preview iframe {
  37. height: 100%;
  38. width: 100%;
  39. border: none;
  40. }