bubble/static/style.css

119 lines
2.1 KiB
CSS

@import url('https://static.ppsfleet.navy/fonts/gen_light/style.css');
@import url('https://static.ppsfleet.navy/fonts/russisch-sans/style.css');
body {
background-color: white;
margin: 3rem;
font-family: 'russisch sans';
font-weight: 100;
font-size: 20px;
}
main {
border-radius: 30px;
background: #e0e0e0;
box-shadow: 20px 20px 60px #bebebe,
-20px -20px 60px #ffffff;
padding: 2rem;
max-width: 1000px;
margin: auto;
box-shadow: 0px 51px 60px -3px rgba(0,0,0,0.31);
}
header {
display: flex;
align-items: end;
margin-bottom: 3rem;
font-weight: 200;
}
h1 {
flex:1;
text-align: center;
font-variant: small-caps;
font-weight: 200;
width: fit-content;
margin: auto;
padding: 0rem 1rem;
/* box-shadow: inset 0px 0px 2px 1px rgba(0,0,0,0.55); */
border-radius: 4px;
margin-bottom: 0;
}
.temperature-line {
font-weight: 300;
}
.temperature-line:has(.very-hot) {
color: #f00;
font-weight: 300;
}
.temperature-line:has(.hot) {
color:#cc5323;
}
.temperature-line:has(.normal-hot) {
color: #cc8223;
}
.temperature-line:has(.normal) {
color: #198e20;
}
.temperature-line:has(.normal-cold) {
color: #1d4686;
}
.temperature-line:has(.cold) {
color: #4382e3;
}
.temperature-line:has(.very-cold) {
color: #0fa2c4;
}
.service {
display: flex;
align-items: center;
gap:1rem;
margin-bottom: 2rem;
}
.service .name {
font-size: 2rem;
flex:1;
}
.service .name:first-letter {
text-transform: uppercase;
}
.status {
height: 50px;
width: 50px;
display: inline-block;
border-radius: 50%;
}
.status.on {
height: 50px;
width: 50px;
display: inline-block;
border-radius: 50%;
background-color: #00ae00;
box-shadow: 0px 14px 21px 6px rgba(0,174,0,0.5), 0px 0px 0px 8px rgba(0,0,0,0.5) inset;
}
.status.off {
height: 50px;
width: 50px;
display: inline-block;
border-radius: 50%;
background-color: #ae2900;
box-shadow: 0px 14px 21px 6px rgba(174,0,0,0.5), 0px 0px 0px 8px rgba(0,0,0,0.5) inset;
}