diff --git a/main.css b/main.css index 0016c16..b26cbb2 100644 --- a/main.css +++ b/main.css @@ -1,5 +1,5 @@ /* Inferencium - Website - CSS - Main */ -/* Version: 12.4.0-beta.2 */ +/* Version: 12.5.0-beta.1 */ /* Copyright 2022 Jake Winters */ /* SPDX-License-Identifier: BSD-3-Clause */ @@ -65,6 +65,10 @@ p { font-size: 16px; } +p.small { + font-size: 12px; +} + p.announce-imp, p.announce-imp a { margin-top: 30%; margin-bottom: 30%; @@ -91,6 +95,18 @@ pre { overflow-x: auto; } +pre.ssh-invalid { + background-color: #e50000; +} + +pre.ssh-valid { + background-color: #00a70a; + color: #000000; +} + +var { + color: #b8b8b8; +} /* Links */ a { @@ -99,6 +115,10 @@ a { text-decoration: none; } +a.small { + font-size: 12px; +} + a:visited { color: #ce93d8; } @@ -130,6 +150,14 @@ table, th, td { font-size: 16px; } +tr.ssh-invalid { + background-color: #e50000; +} + +tr.ssh-valid { + background-color: #00a70a; +} + th { font-size: 16px; font-weight: bold; @@ -149,11 +177,12 @@ td.desc-small { text-align: left; } -td.green { - background-color: #00a70a +td.ssh-valid, td.green { + background-color: #00a70a; + color: #000000; } -td.red { +td.ssh-invalid, td.red { background-color: #e50000; } @@ -341,6 +370,10 @@ div.sitemap-small { background-color: #e0e2ec; } + var { + color: #696969; + } + table, th, td { border-color: #000000; }