Pandoc As A Service
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 713B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. html, body, #container {
  2. height: 100%;
  3. margin: 0px;
  4. box-sizing: border-box;
  5. }
  6. #container {
  7. display: grid;
  8. grid-template-columns: 1fr 1fr;
  9. padding: 10px;
  10. grid-column-gap: 10px;
  11. grid-template-rows: auto 100px;
  12. grid-template-areas:
  13. 'left-pane right-pane'
  14. 'footer right-pane';
  15. }
  16. #editor-container {
  17. grid-area: left-pane;
  18. min-height: 0px;
  19. display: grid;
  20. grid-template-rows: 50px auto 25px;
  21. overflow: auto;
  22. }
  23. #preview-container {
  24. grid-area: right-pane;
  25. min-height: 0px;
  26. display: grid;
  27. grid-template-rows: 50px auto;
  28. }
  29. #preview-wrapper {
  30. overflow: auto;
  31. }
  32. #preview-controls {
  33. line-height: 50px;
  34. }
  35. #pandoc-output {
  36. grid-area: footer;
  37. min-height: 0px;
  38. white-space: pre;
  39. overflow: auto;
  40. }