1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- * {
- padding: 0;
- margin: 0;
- font-family: "Fira Sans", sans-serif;
- }
- html {
- background: linear-gradient(
- 180deg,
- rgba(2, 0, 36, 1) 0%,
- rgba(9, 9, 121, 1) 60%,
- rgba(0, 212, 255, 1) 100%
- );
- background-repeat: repeat;
- background-repeat: no-repeat;
- }
- body {
- min-height: 100vh;
- color: #e6e6e6;
- margin: 0 auto;
- }
- #main {
- margin: auto;
- width: 60%;
- }
- .section {
- border: 1px solid #131313;
- margin: 8px 0;
- background-color: dodgerblue;
- padding: 8px;
- }
- #recentThreadSection {
- display: flex;
- gap: 1em;
- margin-top: 8px;
- }
- .featuredThread {
- max-width: 180px;
- }
- .featuredThreadLink {
- text-decoration: none;
- color: #e6e6e6;
- }
|