added content and design
This commit is contained in:
parent
67801ea631
commit
892be2c2b8
2 changed files with 60 additions and 3 deletions
|
@ -3,5 +3,13 @@
|
||||||
*@
|
*@
|
||||||
|
|
||||||
<div>
|
<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>
|
</div>
|
||||||
|
|
|
@ -1,8 +1,57 @@
|
||||||
.container-nodeinfo {
|
.container-nodeinfo {
|
||||||
line-height: 30px;
|
line-height: 30px;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrapper-nodeinfo {
|
.wrapper-nodeinfo {
|
||||||
border-bottom: 1px solid #dee2e6;
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue