Update CSS "main" from version 11.1.3 to 11.2.0

This commit is contained in:
inference 2023-11-24 01:44:11 +00:00
parent c4cd3726cc
commit 157d47ba81
Signed by: inference
SSH Key Fingerprint: SHA256:FtEVfx1CmTKMy40VwZvF4k+3TC+QhCWy+EmPRg50Nnc

View File

@ -1,5 +1,5 @@
/* Inferencium - Website - CSS */ /* Inferencium - Website - CSS - Main */
/* Version: 11.1.3 */ /* Version: 11.2.0 */
/* Copyright 2022 Jake Winters */ /* Copyright 2022 Jake Winters */
/* SPDX-License-Identifier: BSD-3-Clause */ /* SPDX-License-Identifier: BSD-3-Clause */
@ -189,13 +189,27 @@ td {
text-align: center; text-align: center;
} }
.td-desc { td.desc {
text-align: left; text-align: left;
} }
td.green {
background-color: #00a70a
}
td.red {
background-color: #e50000;
}
/* Image */
img.logo-small {
transform: translate(0px, 13px);
}
/* Navigation bar */ /* Navigation bar */
.nav-bar { nav.navbar {
height: 100%; height: 100%;
width: 250px; width: 250px;
position: fixed; position: fixed;
@ -208,7 +222,7 @@ td {
overflow: auto; overflow: auto;
} }
.nav-bar div, .nav-bar div a, .nav-bar div a:visited { nav.navbar div, .navbar div a, .navbar div a:visited {
padding: 6px; padding: 6px;
font-family: Roboto, sans-serif; font-family: Roboto, sans-serif;
font-size: 22px; font-size: 22px;
@ -217,10 +231,6 @@ td {
z-index: 100; z-index: 100;
} }
.logo-small {
transform: translate(0px, 13px);
}
.title { .title {
padding: 8px; padding: 8px;
font-family: Roboto, sans-serif; font-family: Roboto, sans-serif;
@ -249,7 +259,7 @@ strong {
overflow-x: scroll; overflow-x: scroll;
} }
.nav-bar { nav.navbar {
width: 100vw; width: 100vw;
height: 35px; height: 35px;
font-size: 10px; font-size: 10px;
@ -260,12 +270,12 @@ strong {
white-space: nowrap; white-space: nowrap;
} }
.nav-bar div { nav.navbar div {
font-size: min(max(7vw, 20px), 30px); font-size: min(max(7vw, 20px), 30px);
display: inline-block; display: inline-block;
} }
.nav-bar img, .nav-bar .title { nav.navbar img, nav.navbar .title {
display: none; display: none;
} }