update: CSS "Main" from version "12.4.0" to "12.5.0"

This commit is contained in:
inference 2025-06-25 02:36:04 +00:00
parent b50419efd5
commit aea18eb6cf
Signed by: inference
SSH Key Fingerprint: SHA256:/O3c09/4f1lh4zrhFs2qvQEDda6dZbTwG9xEcj8OfWo

View File

@ -1,5 +1,5 @@
/* Inferencium - Website - CSS - Main */ /* Inferencium - Website - CSS - Main */
/* Version: 12.4.0 */ /* Version: 12.5.0 */
/* Copyright 2022 Jake Winters */ /* Copyright 2022 Jake Winters */
/* SPDX-License-Identifier: BSD-3-Clause */ /* SPDX-License-Identifier: BSD-3-Clause */
@ -8,6 +8,10 @@
/* Display Size - Large /* Display Size - Large
Colour Scheme - Dark */ Colour Scheme - Dark */
/* Body */ /* Body */
html, body {
overflow-x: hidden;
}
body { body {
padding-top: 40px; padding-top: 40px;
margin-left: min(400px, 45vw); margin-left: min(400px, 45vw);
@ -65,6 +69,10 @@ p {
font-size: 16px; font-size: 16px;
} }
p.small {
font-size: 12px;
}
p.announce-imp, p.announce-imp a { p.announce-imp, p.announce-imp a {
margin-top: 30%; margin-top: 30%;
margin-bottom: 30%; margin-bottom: 30%;
@ -91,6 +99,18 @@ pre {
overflow-x: auto; overflow-x: auto;
} }
pre.ssh-invalid {
background-color: #e50000;
}
pre.ssh-valid {
background-color: #00a70a;
color: #000000;
}
var {
color: #b8b8b8;
}
/* Links */ /* Links */
a { a {
@ -99,6 +119,10 @@ a {
text-decoration: none; text-decoration: none;
} }
a.small {
font-size: 12px;
}
a:visited { a:visited {
color: #ce93d8; color: #ce93d8;
} }
@ -130,6 +154,14 @@ table, th, td {
font-size: 16px; font-size: 16px;
} }
tr.ssh-invalid {
background-color: #e50000;
}
tr.ssh-valid {
background-color: #00a70a;
}
th { th {
font-size: 16px; font-size: 16px;
font-weight: bold; font-weight: bold;
@ -149,11 +181,12 @@ td.desc-small {
text-align: left; text-align: left;
} }
td.green { td.ssh-valid, td.green {
background-color: #00a70a background-color: #00a70a;
color: #000000;
} }
td.red { td.ssh-invalid, td.red {
background-color: #e50000; background-color: #e50000;
} }
@ -341,6 +374,10 @@ div.sitemap-small {
background-color: #e0e2ec; background-color: #e0e2ec;
} }
var {
color: #696969;
}
table, th, td { table, th, td {
border-color: #000000; border-color: #000000;
} }