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

110 lines
1.8 KiB
CSS
Raw Normal View History

2022-12-19 22:54:23 +00:00
/* Loading Box: */
@keyframes spinner {
0% {
transform: translate3d(-50%, -50%, 0) rotate(0deg);
}
100% {
transform: translate3d(-50%, -50%, 0) rotate(360deg);
}
}
.spinner::before {
animation: 1.5s linear infinite spinner;
animation-play-state: inherit;
border: solid 5px var(--overlay-color);
border-bottom-color: white;
border-radius: 50%;
content: "";
height: 40px;
width: 40px;
position: absolute;
top: 30%;
margin: auto;
transform: translate3d(-50%, -50%, 0);
will-change: transform;
}
#loading {
position: absolute;
2022-12-19 23:52:27 +00:00
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
2022-12-19 22:54:23 +00:00
margin: auto;
background-color: var(--overlay-color);
border-radius: 45px;
padding: 20px;
padding-bottom: 1px;
min-width: 90px;
}
#loading p {
padding-top: 50px;
2022-12-19 23:52:27 +00:00
font-weight: bolder;
}
/* Main Notices: */
.main-notice {
2023-01-11 23:18:00 +00:00
display: none;
margin-top: 150px;
}
.notices-hidden {
display: none;
}
#no_services {
width: 75%;
margin: auto;
margin-top: 150px;
font-size: 20px;
font-weight: 900;
2023-01-11 23:18:00 +00:00
}
/* Fixed Content: */
2022-12-19 23:52:27 +00:00
#header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 50px;
background-color: var(--overlay-color);
}
#station_name {
position: absolute;
margin-top: 10px;
font-size: 15pt;
2022-12-19 23:52:27 +00:00
left: 10px;
text-transform: capitalize;
2022-12-19 23:52:27 +00:00
}
.header-right {
text-align: right;
padding-right: 5px;
margin: 4px;
}
#footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 40px;
background-color: var(--overlay-color);
}
#footer img {
height: 35px;
2022-12-20 12:45:31 +00:00
}
.hide-when-loading {
display: none;
2023-01-11 23:18:00 +00:00
}
/* NRCC Notices */
2023-01-11 23:18:00 +00:00
#nrcc_notices {
margin-top: 60px;
height: 65px;
font-size: 14px;
}
#nrcc_notices p {
width: 95%;
margin: auto;
2022-12-19 22:54:23 +00:00
}