Adds fastfetch/Server Observations as a screen

This commit is contained in:
mrkmntal 2026-04-04 15:12:08 -04:00
commit 57a766380a
11 changed files with 210 additions and 10 deletions

View file

@ -0,0 +1,48 @@
@use 'shared/_colors'as c;
@use 'shared/_utils'as u;
#server-observations-html.weather-display {
.header .title.single {
font-size: 20pt;
}
}
.weather-display .server-observations {
// Override the default has-scroll height to fit content properly
&.main {
height: auto !important;
min-height: 250px;
}
.container {
position: relative;
top: 15px;
box-sizing: border-box;
height: 250px;
overflow: hidden;
}
.server-output {
position: relative;
font-family: 'Star4000';
font-size: 20pt;
line-height: 32px;
color: #fff;
text-transform: uppercase;
text-align: center;
@include u.text-shadow();
.server-page {
height: 250px;
padding: 0 8px;
box-sizing: border-box;
}
.server-line {
white-space: normal;
overflow-wrap: anywhere;
word-break: break-word;
margin-bottom: 6px;
}
}
}