ProxmoxAAS-API/css/style.css

52 lines
525 B
CSS
Raw Normal View History

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