style.css 816 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. h1, h2, h3, h4 {
  2. margin: 0;
  3. }
  4. .admin {
  5. color: red;
  6. }
  7. #article_browser {
  8. height: 90vh;
  9. display: grid;
  10. grid-template-areas: ". up ."
  11. "before focused after"
  12. ". down .";
  13. grid-template-columns: 1fr 3fr 1fr;
  14. grid-template-rows: 1fr 3fr 1fr;
  15. }
  16. #article_browser .focused {
  17. grid-area: focused;
  18. align-self: center;
  19. justify-self: center;
  20. padding: 1em;
  21. overflow: scroll;
  22. height: 100%;
  23. }
  24. #article_browser .up {
  25. grid-area: up;
  26. overflow: scroll;
  27. }
  28. #article_browser .before {
  29. grid-area: before;
  30. align-self: center;
  31. }
  32. #article_browser .after {
  33. grid-area: after;
  34. align-self: center;
  35. }
  36. #article_browser .down {
  37. grid-area: down;
  38. overflow: scroll;
  39. }
  40. #article_browser :not(.focused) ul {
  41. list-style: none;
  42. margin-block-start: 0;
  43. }