This repository has been archived on 2023-08-24. You can view files and clone it, but cannot push or open issues or pull requests.
OwlBoard/static/styles/boards.css

113 lines
1.5 KiB
CSS

/* Main Notices: */
.main-notice {
display: none;
margin-top: 150px;
}
.notices-hidden {
display: none;
}
#no_services {
width: 75%;
margin: auto;
margin-top: 150px;
font-size: 20px;
font-weight: 900;
}
/* Fixed Content: */
#header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 50px;
background-color: var(--overlay-color);
color: lightgrey;
}
#station_name {
position: absolute;
margin-top: 10px;
font-size: 15pt;
left: 10px;
text-transform: capitalize;
}
.header-right {
text-align: right;
padding-right: 5px;
margin: 3px;
}
#footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 40px;
background-color: var(--overlay-color);
}
#footer img {
height: 35px;
}
.hide-when-loading {
display: none;
}
/* NRCC Notices */
#nrcc_notices {
margin-top: 60px;
font-size: 14px;
}
#nrcc_notices p {
width: 95%;
margin: auto;
}
/* Content */
#output {
width: 100%;
}
table {
width: 100%;
margin-top: 3px;
font-size: 10.5px;
}
.name{
width: 25%;
text-align: left;
}
.plat{
width: 4%;
text-align: center;
}
.time{
width: 11.5%;
text-align: center;
}
.msg{
width: 95%;
font-size: 10px;
margin: 0;
margin-left: 3px;
text-align: left;
color: white;
}
.changed{
animation: pulse 1.5s linear infinite;
}
/* Animations */
@keyframes pulse {
50% {
opacity: 0;
}
}