ProxmoxAAS-Dashboard/css/style.css
Arthur Lu 0b66410a1d fix login for styling
Signed-off-by: Arthur Lu <learthurgo@gmail.com>
2023-05-03 21:25:55 +00:00

54 lines
572 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;
display: grid;
grid-template-rows: auto 1fr;
}
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;
}