style.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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 a {
  17. text-decoration: none;
  18. }
  19. #article_browser .focused {
  20. grid-area: focused;
  21. align-self: center;
  22. justify-self: center;
  23. margin: 1em;
  24. overflow: scroll;
  25. height: 100%;
  26. background-color: #eee;
  27. display: grid;
  28. grid-gap: 2em;
  29. }
  30. #article_browser .focused .similar {
  31. align-self: end;
  32. }
  33. #article_browser .focused h2 img {
  34. vertical-align: middle;
  35. }
  36. #article_browser .up {
  37. grid-area: up;
  38. overflow: scroll;
  39. }
  40. #article_browser .before {
  41. grid-area: before;
  42. align-self: center;
  43. }
  44. #article_browser .after {
  45. grid-area: after;
  46. align-self: center;
  47. }
  48. #article_browser .down {
  49. grid-area: down;
  50. overflow: scroll;
  51. }
  52. #article_browser :not(.focused) ul {
  53. list-style: none;
  54. margin-block-start: 0;
  55. }