ProxmoxAAS-Dashboard/css/style.css
Arthur Lu ed7c79df78 improve login style and logic
Signed-off-by: Arthur Lu <learthurgo@gmail.com>
2023-04-18 20:08:59 +00:00

38 lines
447 B
CSS

:root {
--fail-color: #f00;
--success-color: #0f0;
}
h1, h2, h3, h3, h4, h5, h6, p, a, label, button, input, select {
font-family: monospace;
}
body {
min-height: 100vh;
}
img.clickable {
cursor: pointer;
}
img {
height: 1em;
width: 1em;
}
.flex-row-nowrap {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
column-gap: 10px;
align-items: center;
height: 100%;
}
.hidden {
visibility: hidden;
}
.none {
display: none;
}