ProxmoxAAS-Dashboard/css/style.css
2023-05-07 04:15:22 +00:00

79 lines
881 B
CSS

:root {
--fail-color: #f00;
--success-color: #0f0;
}
* {
box-sizing: border-box;
}
h1, h2, h3, h3, h4, h5, h6, p, a, label, button, input, select, td {
font-family: monospace;
}
body {
min-height: 100vh;
max-width: 100vw;
display: grid;
grid-template-rows: auto 1fr;
}
main {
max-width: 100vw;
background-color: #303030;
color: white;
}
.w3-card {
background-color: #202020;
box-shadow: 0 2px 5px 0 black;
}
th {
background-color: #080808;
}
td {
background-color: #202020;
}
input, select, textarea {
background-color: #303030;
color: white;
}
img.clickable {
cursor: pointer;
}
img {
height: 1em;
width: 1em;
}
.flex {
display: flex;
}
.row {
flex-direction: row;
column-gap: 10px;
align-items: center;
}
.wrap {
flex-wrap: wrap;
row-gap: 10px;
}
.nowrap {
flex-wrap: nowrap;
}
.hidden {
visibility: hidden;
}
.none {
display: none;
}