feat: add dark mode and announcement component

This commit is contained in:
2025-03-27 15:00:01 -07:00
parent b7f60dbcb7
commit 57070cb14a
7 changed files with 157 additions and 0 deletions

View File

@ -0,0 +1,28 @@
.announcement {
background-color: #a32952;
font-family: monospace;
color: #ffefef;
font-size: 1em;
line-height: 1.4;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
margin: 1em 0;
padding: 1em;
}
.announcement a {
color: #ffefef;
font-weight: bold;
text-decoration: underline;
padding: 0 4px;
}
.announcement a:hover {
cursor: pointer;
}
.announcement-heading {
text-align: center;
}