317 lines
4.5 KiB
CSS
317 lines
4.5 KiB
CSS
/* General HTML & Body Styles */
|
|
html {
|
|
background-color: #241917;
|
|
color: #f3bbae;
|
|
font-size: 14px;
|
|
}
|
|
|
|
html {
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body {
|
|
font-family: Liberation Mono, Courier New, monospace, serif;
|
|
font-size: 1rem;
|
|
line-height: 1.5rem;
|
|
margin: auto;
|
|
margin-bottom: 10rem;
|
|
margin-top: 0;
|
|
max-width: 700px;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
/* Table Styles */
|
|
table {
|
|
background-color: #342a27;
|
|
border-collapse: collapse;
|
|
color: #f3bbae;
|
|
font-size: 0.95rem;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
padding: 5px 5px;
|
|
text-align: left;
|
|
}
|
|
|
|
th {
|
|
background-color: #9a756c;
|
|
color: #241917;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: #3c2a26;
|
|
}
|
|
|
|
tr:hover {
|
|
background-color: #503b30;
|
|
cursor: pointer;
|
|
}
|
|
|
|
ul {
|
|
margin-top: 0;
|
|
}
|
|
|
|
/* Header Styles */
|
|
h3,
|
|
h2,
|
|
h1 {
|
|
color: #f1c9c0;
|
|
background-color: #56423d;
|
|
padding: 0.25rem;
|
|
padding-left: 0.5rem;
|
|
padding-right: 0.5rem;
|
|
margin: 0;
|
|
margin-bottom: 0.55rem;
|
|
text-align: center;
|
|
border-bottom: 2px solid #f1c9c0;
|
|
}
|
|
|
|
.table-header {
|
|
text-align: center;
|
|
}
|
|
|
|
/* Paragraph Styles */
|
|
p {
|
|
margin-bottom: 13px;
|
|
margin-top: 0;
|
|
}
|
|
|
|
/* Global Reset */
|
|
* {
|
|
box-sizing: border-box;
|
|
text-rendering: geometricPrecision;
|
|
}
|
|
|
|
/* Links and Buttons */
|
|
a {
|
|
color: inherit !important;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a[itemprop="url"]:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
button {
|
|
background-color: transparent;
|
|
border: none;
|
|
color: inherit !important;
|
|
display: inline-block;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Navigation Links */
|
|
.nav-links {
|
|
display: flex;
|
|
flex-direction: row;
|
|
font-size: 0.9rem;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.left {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 0;
|
|
}
|
|
|
|
/* Active and Inactive States */
|
|
.active,
|
|
.inactive {
|
|
display: inline-block;
|
|
font-size: inherit !important;
|
|
padding: 0.85rem;
|
|
padding-bottom: 0.55rem;
|
|
}
|
|
|
|
.active {
|
|
background-color: #f3bbae;
|
|
color: #241917 !important;
|
|
}
|
|
|
|
.inactive:hover {
|
|
background-color: #503b30;
|
|
}
|
|
|
|
/* Right Section Layout */
|
|
.right {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 1rem;
|
|
padding: 0.75rem;
|
|
}
|
|
|
|
/* Feed Icon */
|
|
.feed-icon::after {
|
|
content: none !important;
|
|
}
|
|
|
|
/* Social Icon */
|
|
.social-icon {
|
|
display: block;
|
|
height: 1.5em;
|
|
margin-bottom: 0.25em;
|
|
padding: 0.1em;
|
|
width: auto;
|
|
}
|
|
|
|
/* Icon Styles */
|
|
.icon {
|
|
margin-bottom: -3px;
|
|
}
|
|
|
|
/* User Actions Container */
|
|
.user-actions-container {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-grow: 1;
|
|
gap: 15px;
|
|
margin-left: 15px;
|
|
margin-right: 15px;
|
|
max-width: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
/* Main */
|
|
main {
|
|
animation: intro 0.3s both;
|
|
animation-delay: 0.15s;
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
/* Footer */
|
|
footer {
|
|
color: #fff;
|
|
font-size: 0.75rem;
|
|
margin-top: 4rem;
|
|
}
|
|
|
|
/* Section */
|
|
section {
|
|
align-items: start;
|
|
border-color: #9a756c;
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
justify-content: start;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.grid {
|
|
align-items: start;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
}
|
|
|
|
.grid div {
|
|
width: 100%;
|
|
}
|
|
|
|
/* Console */
|
|
|
|
.console {
|
|
display: grid;
|
|
font-weight: 600;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
grid-template-rows: repeat(6, 1fr);
|
|
}
|
|
|
|
.console-right button,
|
|
.console-right .alert {
|
|
background-color: #f3bbae;
|
|
color: #241917 !important;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
font-size: inherit !important;
|
|
padding: 0.85rem;
|
|
padding-bottom: 0.55rem;
|
|
text-decoration: none;
|
|
font-size: 0.9rem !important;
|
|
font-weight: 600;;
|
|
}
|
|
.console-right button:hover {
|
|
background-color: #9a756c;
|
|
}
|
|
|
|
.console-right .alert {
|
|
background-color: #ff3e1c;
|
|
color: #ffe3dd !important;
|
|
}
|
|
|
|
.console-right {
|
|
display: flex;
|
|
justify-content: end;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.console-resources {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.console-resources div {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.progress {
|
|
border-color: #9a756c;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
height: 8px;
|
|
}
|
|
|
|
.progress .bar {
|
|
background-color: #f3bbae;
|
|
height: 100%;
|
|
}
|
|
|
|
.console i {
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.console-log {
|
|
grid-column: span 2;
|
|
}
|
|
|
|
.console-log summary {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.console-header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
}
|
|
|
|
.console-right {
|
|
text-align: end;
|
|
}
|
|
.console-left {
|
|
text-align: start;
|
|
}
|
|
|
|
.console-uname {
|
|
grid-row: span 2;
|
|
}
|
|
|
|
.console-uname li:before {
|
|
content: "- ";
|
|
display: inline-block;
|
|
margin: 0 0 0 -15px;
|
|
width: 10px;
|
|
}
|
|
|
|
.console-uname ul {
|
|
font-size: 0.85rem;
|
|
list-style-type: none;
|
|
padding-left: 2rem;
|
|
}
|