style.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. .site_logo {
  17. display: inline-block;
  18. padding: 0.1em;
  19. width: 100px;
  20. }
  21. .site_logo svg,
  22. .site_logo img {
  23. width: 100px;
  24. }
  25. #article_browser a {
  26. text-decoration: none;
  27. }
  28. #article_browser .focused {
  29. grid-area: focused;
  30. align-self: center;
  31. justify-self: center;
  32. margin: 1em;
  33. overflow: hidden;
  34. height: 100%;
  35. background-color: #eee;
  36. display: grid;
  37. }
  38. #article_browser .focused time {
  39. justify-self: end;
  40. }
  41. #article_browser .focused .similar {
  42. margin-top: 3em;
  43. overflow: scroll;
  44. }
  45. #article_browser .focused h2 img {
  46. vertical-align: middle;
  47. }
  48. #article_browser .up {
  49. grid-area: up;
  50. overflow: scroll;
  51. }
  52. #article_browser .before {
  53. grid-area: before;
  54. align-self: center;
  55. }
  56. #article_browser .after {
  57. grid-area: after;
  58. align-self: center;
  59. }
  60. #article_browser .down {
  61. grid-area: down;
  62. overflow: scroll;
  63. }
  64. #article_browser :not(.focused) ul {
  65. list-style: none;
  66. margin-block-start: 0;
  67. }