forms.css 648 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. *{
  2. box-sizing: border-box;
  3. padding: 0;
  4. margin: 0;
  5. }
  6. :root {
  7. --grid-cols: 1;
  8. --grid-rows: 1;
  9. }
  10. #container {
  11. display: grid;
  12. grid-template-rows: repeat(var(--grid-rows), 1fr);
  13. grid-template-columns: repeat(var(--grid-cols), 1fr);
  14. height: 100vh;
  15. }
  16. .grid-item {
  17. border: none;
  18. }
  19. .grid-item-invis{
  20. border: none;
  21. text-align: center;
  22. width: 0px;
  23. height: 0px;
  24. background-color: #fff;
  25. }
  26. #json{
  27. height: auto;
  28. max-height: 80%;
  29. overflow: auto;
  30. background-color: #eeeeee;
  31. word-break: normal !important;
  32. word-wrap: normal !important;
  33. white-space: pre !important;
  34. }
  35. #submission{
  36. display: none;
  37. }