style.css 908 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. margin: 1em;
  21. overflow: scroll;
  22. height: 100%;
  23. background-color: #eee;
  24. }
  25. #article_browser .focused h2 img {
  26. vertical-align: middle;
  27. }
  28. #article_browser .up {
  29. grid-area: up;
  30. overflow: scroll;
  31. }
  32. #article_browser .before {
  33. grid-area: before;
  34. align-self: center;
  35. }
  36. #article_browser .after {
  37. grid-area: after;
  38. align-self: center;
  39. }
  40. #article_browser .down {
  41. grid-area: down;
  42. overflow: scroll;
  43. }
  44. #article_browser :not(.focused) ul {
  45. list-style: none;
  46. margin-block-start: 0;
  47. }