2024-01-21 18:25:23 +02:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&family=Roboto:wght@100;300;400&display=swap');
|
|
|
|
|
|
|
|
:root {
|
|
|
|
--bg0: #202327;
|
|
|
|
--bg1: #282d33;
|
|
|
|
--bg2: #31373f;
|
2024-01-21 19:12:40 +02:00
|
|
|
--bg3: #3e4248;
|
2024-01-21 18:25:23 +02:00
|
|
|
|
|
|
|
--fg0: #bbc0ca;
|
2024-01-21 19:12:40 +02:00
|
|
|
--fg1: #434c56;
|
2024-01-21 18:25:23 +02:00
|
|
|
|
|
|
|
--acc: #bbc0ca;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root {
|
|
|
|
color: var(--fg0);
|
|
|
|
font-family: "Noto Sans Mono", "Roboto", sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
margin: 0;
|
2024-01-20 01:40:55 +02:00
|
|
|
padding: 0;
|
2024-01-21 18:25:23 +02:00
|
|
|
|
|
|
|
width: 100vw;
|
|
|
|
|
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
background-color: var(--bg0);
|
2024-01-20 01:40:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
2024-01-21 18:25:23 +02:00
|
|
|
margin: 1rem auto;
|
|
|
|
max-width: 768px;
|
2024-01-20 01:40:55 +02:00
|
|
|
|
2024-01-21 18:25:23 +02:00
|
|
|
border-radius: 8px;
|
|
|
|
border: 1px solid var(--fg1);
|
|
|
|
|
|
|
|
background-color: var(--bg1);
|
|
|
|
overflow: hidden;
|
2024-01-20 01:40:55 +02:00
|
|
|
}
|
|
|
|
|
2024-01-21 18:25:23 +02:00
|
|
|
.container-titlebar {
|
2024-01-20 01:40:55 +02:00
|
|
|
width: 100%;
|
2024-01-21 18:25:23 +02:00
|
|
|
|
|
|
|
background-color: var(--bg2);
|
2024-01-20 01:40:55 +02:00
|
|
|
}
|
|
|
|
|
2024-01-21 18:25:23 +02:00
|
|
|
.container .pad {
|
|
|
|
padding: .5rem 1rem;
|
2024-01-20 01:40:55 +02:00
|
|
|
}
|
|
|
|
|
2024-01-21 18:25:23 +02:00
|
|
|
.container-titlebar h4 {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2024-01-20 01:40:55 +02:00
|
|
|
}
|
|
|
|
|
2024-01-21 18:25:23 +02:00
|
|
|
|
|
|
|
/* Table */
|
|
|
|
|
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
border-collapse: collapse;
|
2024-01-20 01:40:55 +02:00
|
|
|
}
|
|
|
|
|
2024-01-21 18:25:23 +02:00
|
|
|
table thead tr {
|
|
|
|
border-bottom: 1px solid var(--bg2);
|
2024-01-20 01:40:55 +02:00
|
|
|
}
|
|
|
|
|
2024-01-21 18:25:23 +02:00
|
|
|
.graph-image {
|
|
|
|
max-width: 100%;
|
2024-01-21 19:12:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.disk-graph-entry {
|
|
|
|
background-color: var(--bg3);
|
|
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
|
|
padding: .3rem .5rem;
|
2024-01-20 01:40:55 +02:00
|
|
|
}
|