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 612B

123456789101112131415161718192021222324252627282930313233343536373839
  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 footer';
  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. #pandoc-output {
  33. grid-area: footer;
  34. }