hnsdoh-status/templates/assets/css/index.css
Nathan Woodburn 809a4f9d04
All checks were successful
Build Docker / BuildImage (push) Successful in 50s
feat: Change node border colours for warnings and errors
2024-09-13 10:44:52 +10:00

31 lines
424 B
CSS

.node {
margin: 25px;
border: solid;
border-radius: 20px;
padding: 20px;
}
.spacer {
margin: 25px;
display: block;
}
.warnings,.errors {
margin: auto;
width: 1000px;
max-width: 95%;
margin-top: 20px;
}
.node-info {
margin-top: 5px;
margin-bottom: 5px;
}
.node-info > p{
margin: 0;
}
.node.warning {
border-color: #FFA500;
}
.node.error {
border-color: #FF0000;
}