style.css 1007 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. display: grid;
  25. grid-gap: 2em;
  26. }
  27. #article_browser .focused .similar {
  28. align-self: end;
  29. }
  30. #article_browser .focused h2 img {
  31. vertical-align: middle;
  32. }
  33. #article_browser .up {
  34. grid-area: up;
  35. overflow: scroll;
  36. }
  37. #article_browser .before {
  38. grid-area: before;
  39. align-self: center;
  40. }
  41. #article_browser .after {
  42. grid-area: after;
  43. align-self: center;
  44. }
  45. #article_browser .down {
  46. grid-area: down;
  47. overflow: scroll;
  48. }
  49. #article_browser :not(.focused) ul {
  50. list-style: none;
  51. margin-block-start: 0;
  52. }