Add announcement

This commit is contained in:
Lars Westermann 2019-06-11 13:50:11 +02:00
parent 7ac2e1c208
commit 594ac544dd
Signed by: lars.westermann
GPG key ID: 9D417FA5BB9D5E1D
18 changed files with 285 additions and 8 deletions

View file

@ -205,3 +205,10 @@
margin-top: -1px !important;
}
}
.board-announcement {
position: fixed;
bottom: 3rem;
z-index: 10;
margin-bottom: 0 !important;
}

View file

@ -181,4 +181,21 @@ body.offline {
.offline-banner {
display: block;
}
}
}
.announcement {
height: 3rem;
line-height: 3rem;
text-align: center;
width: 100%;
font-size: 1.2rem;
background-color: var(--primary-color);
color: var(--primary-text-color);
box-shadow: 0 1px 4px var(--shadow-color);
margin-bottom: 1rem;
display: block;
&.announcement-blank {
display: none;
}
}