style.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. }
  29. #article_browser .focused time {
  30. justify-self: end;
  31. }
  32. #article_browser .focused .similar {
  33. margin-top: 3em;
  34. align-self: end;
  35. }
  36. #article_browser .focused h2 img {
  37. vertical-align: middle;
  38. }
  39. #article_browser .up {
  40. grid-area: up;
  41. overflow: scroll;
  42. }
  43. #article_browser .before {
  44. grid-area: before;
  45. align-self: center;
  46. }
  47. #article_browser .after {
  48. grid-area: after;
  49. align-self: center;
  50. }
  51. #article_browser .down {
  52. grid-area: down;
  53. overflow: scroll;
  54. }
  55. #article_browser :not(.focused) ul {
  56. list-style: none;
  57. margin-block-start: 0;
  58. }