index.css 675 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. font-family: "Fira Sans", sans-serif;
  5. }
  6. html {
  7. background: linear-gradient(
  8. 180deg,
  9. rgba(2, 0, 36, 1) 0%,
  10. rgba(9, 9, 121, 1) 60%,
  11. rgba(0, 212, 255, 1) 100%
  12. );
  13. background-repeat: repeat;
  14. background-repeat: no-repeat;
  15. }
  16. body {
  17. min-height: 100vh;
  18. color: #e6e6e6;
  19. margin: 0 auto;
  20. }
  21. #main {
  22. margin: auto;
  23. width: 60%;
  24. }
  25. .section {
  26. border: 1px solid #131313;
  27. margin: 8px 0;
  28. background-color: dodgerblue;
  29. padding: 8px;
  30. }
  31. #recentThreadSection {
  32. display: flex;
  33. gap: 1em;
  34. margin-top: 8px;
  35. }
  36. .featuredThread {
  37. max-width: 180px;
  38. }
  39. .featuredThreadLink {
  40. text-decoration: none;
  41. color: #e6e6e6;
  42. }