2022-12-09 09:54:37 +00:00
|
|
|
/* Inferencium - Website - CSS */
|
|
|
|
|
2023-03-05 05:13:07 +00:00
|
|
|
/* Copyright 2022-2023 Jake Winters */
|
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause-Clear */
|
2022-12-09 09:54:37 +00:00
|
|
|
|
2023-04-05 07:23:24 +01:00
|
|
|
/* Version: 9.1.0.26 */
|
2022-12-09 09:54:37 +00:00
|
|
|
|
|
|
|
|
2023-03-22 14:20:50 +00:00
|
|
|
/* Heading 1 */
|
2023-03-10 03:22:38 +00:00
|
|
|
h1, .h1 {
|
2022-12-09 09:54:37 +00:00
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
font-size: 26px;
|
|
|
|
text-align: center;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
2023-03-22 14:20:50 +00:00
|
|
|
|
|
|
|
/* Heading 2 */
|
2023-03-10 03:22:38 +00:00
|
|
|
h2, .h2 {
|
2022-12-09 09:54:37 +00:00
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
font-size: 22px;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
2023-03-22 14:20:50 +00:00
|
|
|
|
|
|
|
/* Heading 3 */
|
2023-03-10 03:22:38 +00:00
|
|
|
h3, .h3 {
|
2022-12-09 09:54:37 +00:00
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
font-size: 20px;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
2023-03-22 14:20:50 +00:00
|
|
|
|
|
|
|
/* Heading 4 */
|
2023-03-10 03:22:38 +00:00
|
|
|
h4, .h4 {
|
2022-12-09 09:54:37 +00:00
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
2023-03-22 14:20:50 +00:00
|
|
|
|
|
|
|
/* Heading 5 */
|
2023-03-10 03:22:38 +00:00
|
|
|
h5, .h5 {
|
2022-12-09 09:54:37 +00:00
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
2023-03-22 14:20:50 +00:00
|
|
|
|
|
|
|
/* Heading 6 */
|
2023-03-10 03:22:38 +00:00
|
|
|
h6, .h6 {
|
2022-12-09 09:54:37 +00:00
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
2023-03-22 14:20:50 +00:00
|
|
|
|
|
|
|
/* Body */
|
2022-12-09 09:54:37 +00:00
|
|
|
body {
|
|
|
|
padding-top: 40px;
|
2022-12-20 04:53:45 +00:00
|
|
|
margin-left: min(400px, 45vw);
|
|
|
|
margin-right: min(150px, 12vw);
|
2022-12-09 09:54:37 +00:00
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
font-size: 20px;
|
2023-03-22 01:19:23 +00:00
|
|
|
line-height: 120%;
|
2022-12-09 09:54:37 +00:00
|
|
|
background-color: #262626;
|
|
|
|
}
|
|
|
|
|
|
|
|
.body-link {
|
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
font-size: 18px;
|
2023-03-22 02:26:08 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.body-link:link {
|
|
|
|
color: #5dade2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.body-link:visited {
|
2023-03-22 14:22:36 +00:00
|
|
|
color: #bb8fce;
|
2023-03-22 02:26:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.body-link:hover {
|
2022-12-09 09:54:37 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2023-03-22 14:20:50 +00:00
|
|
|
|
|
|
|
/* Paragraph */
|
2022-12-09 09:54:37 +00:00
|
|
|
p {
|
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
2023-03-22 14:20:50 +00:00
|
|
|
|
|
|
|
/* Code */
|
2022-12-09 09:54:37 +00:00
|
|
|
code {
|
2023-03-22 01:19:23 +00:00
|
|
|
font-size: 16px;
|
2022-12-09 09:54:37 +00:00
|
|
|
color: #ffffff;
|
2023-03-22 01:19:23 +00:00
|
|
|
background-color: #000000;
|
|
|
|
padding-top: 4px;
|
|
|
|
padding-right: 4px;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
padding-left: 4px;
|
2022-12-09 09:54:37 +00:00
|
|
|
}
|
|
|
|
|
2023-03-22 14:20:50 +00:00
|
|
|
|
|
|
|
/* Link */
|
2022-12-09 09:54:37 +00:00
|
|
|
a {
|
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
color: #000000;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2023-03-22 14:20:50 +00:00
|
|
|
|
|
|
|
/* Lists */
|
2023-03-10 03:52:27 +00:00
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
2023-03-10 09:23:11 +00:00
|
|
|
li {
|
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
2023-03-10 03:52:27 +00:00
|
|
|
ul li::before {
|
2023-03-10 03:57:51 +00:00
|
|
|
content: "\25AA";
|
2023-03-10 03:52:27 +00:00
|
|
|
margin-left: -1em;
|
|
|
|
display: inline-block;
|
|
|
|
width: 1em;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
2023-03-22 14:20:50 +00:00
|
|
|
|
|
|
|
/* Tables */
|
2022-12-09 09:54:37 +00:00
|
|
|
table, th, td {
|
|
|
|
border: 2px solid;
|
|
|
|
border-collapse: collapse;
|
|
|
|
border-color: #ffffff;
|
|
|
|
padding: 15px;
|
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #ffffff;
|
2023-04-04 17:12:55 +01:00
|
|
|
overflow-x: auto;
|
2022-12-09 09:54:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.table-title {
|
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #ffffff;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-main {
|
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #ffffff;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2023-03-22 14:20:50 +00:00
|
|
|
|
|
|
|
/* Sidebar */
|
2022-12-09 09:54:37 +00:00
|
|
|
.sidebar {
|
|
|
|
height: 100%;
|
|
|
|
width: 250px;
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
padding-top: 55px;
|
|
|
|
background-color: #909090;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar div {
|
|
|
|
padding: 8px;
|
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
font-size: 24px;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
padding: 8px;
|
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
font-size: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo-small {
|
|
|
|
transform: translate(0px, 13px);
|
|
|
|
}
|
2022-12-20 04:53:45 +00:00
|
|
|
|
2023-03-22 14:20:50 +00:00
|
|
|
|
|
|
|
/* Emphasis */
|
2023-03-10 06:09:43 +00:00
|
|
|
strong {
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
2023-03-22 14:20:50 +00:00
|
|
|
|
|
|
|
/* Media */
|
2022-12-20 04:53:45 +00:00
|
|
|
@media (max-width: 600px) {
|
2022-12-26 02:14:56 +00:00
|
|
|
|
2023-04-05 07:23:24 +01:00
|
|
|
html {
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
2022-12-25 10:19:05 +00:00
|
|
|
.sidebar {
|
|
|
|
width: 100vw;
|
2023-03-22 18:25:09 +00:00
|
|
|
height: 40px;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 0%;
|
|
|
|
padding-top: 20px;
|
|
|
|
overflow: auto;
|
|
|
|
white-space: nowrap;
|
2022-12-25 10:19:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar div {
|
|
|
|
font-size: min(max(7vw, 20px), 30px);
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar img, .sidebar .title {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2023-03-22 17:57:24 +00:00
|
|
|
h1 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-12-26 02:14:56 +00:00
|
|
|
h2 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-12-26 00:52:37 +00:00
|
|
|
h3 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-12-26 04:04:55 +00:00
|
|
|
h4 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-12-26 05:19:53 +00:00
|
|
|
h5 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-12-26 05:24:21 +00:00
|
|
|
h6 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-12-26 07:45:17 +00:00
|
|
|
.update_date {
|
2022-12-25 10:19:05 +00:00
|
|
|
text-align: center;
|
2022-12-26 00:52:37 +00:00
|
|
|
}
|
2022-12-25 10:19:05 +00:00
|
|
|
|
|
|
|
body {
|
2023-03-22 18:25:09 +00:00
|
|
|
padding-top: 80px;
|
2022-12-26 05:58:21 +00:00
|
|
|
margin: 15px;
|
2023-04-05 07:23:24 +01:00
|
|
|
position: relative;
|
|
|
|
overflow-x: hidden;
|
2022-12-25 10:19:05 +00:00
|
|
|
}
|
2022-12-20 04:53:45 +00:00
|
|
|
}
|