generated from nhcarrigan/template
29 lines
458 B
SCSS
29 lines
458 B
SCSS
.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;
|
|
}
|