ProxmoxAAS-Dashboard/css/instance.css
Arthur Lu d1cd928d11 major changes to styling:
move nav bar to left side and implement hover animations,
generalize color scheme using css variables,
move button and btn-group related styles to buttons.css,
consolidate form input and select styles in form.css

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
2023-03-25 23:38:15 +00:00

40 lines
615 B
CSS

article {
border: solid var(--content-txt-color) 1px;
border-radius: 5px;
padding: 0px 1em 0px 1em;
margin: 20px 0px 20px 0px;
}
article > div {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
column-gap: 10px;
}
article > div > div {
display: flex;
column-gap: 10px;
align-items: center;
flex-grow: 1;
flex-basis: 0;
}
article > div > div > img {
height: 16px;
}
hr {
border: none;
border-top: solid var(--content-txt-color) 1px;
margin: 0px;
}
.btn-group {
margin: 14px 0px 14px 0px;
}
.btn-group img {
height: 16px;
}