added content and design

This commit is contained in:
Nicolas Constant 2021-02-17 23:18:53 -05:00
parent 67801ea631
commit 892be2c2b8
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
2 changed files with 60 additions and 3 deletions

View File

@ -3,5 +3,13 @@
*@
<div>
TEST
<a href="#" class="badge badge-light" title="What does this mean?">Whitelisting Enabled</a>
<a href="#" class="badge badge-light" title="What does this mean?">Blacklisting Enabled</a>
<div class="node-progress-bar">
<div class="node-progress-bar__label">Instance saturation: </div>
<div class="progress node-progress-bar__bar">
<div class="progress-bar" style="width: 15%">15%</div>
</div>
</div>
</div>

View File

@ -1,8 +1,57 @@
.container-nodeinfo {
line-height: 30px;
text-align: center;
}
.wrapper-nodeinfo {
border-bottom: 1px solid #dee2e6;
}
}
@media (max-width: 767px) {
.node-progress-bar {
display: block;
width: 100%;
margin-bottom: 7px;
}
.node-progress-bar__label {
display: block;
font-size: 12px;
/*float: left;*/
padding: 0 5px 0 0;
/*height: 15px;*/
line-height: 15px;
}
.node-progress-bar__bar {
width: 80%;
margin: auto;
margin-top: 5px;
}
}
@media (min-width: 768px) {
.node-progress-bar {
display: inline-block;
width: 400px;
}
.node-progress-bar__label {
display: inline-block;
font-size: 12px;
float: left;
padding: 0 5px 0 0;
/*height: 15px;*/
line-height: 15px;
}
.node-progress-bar__bar {
width: 200px;
position: relative;
top: -1px;
}
}