Files
GPW/GPW.CORE.UI/Components/Test.razor
T
2021-12-10 17:52:35 +01:00

40 lines
1.2 KiB
Plaintext

<div style="height: 4em;">
<div class="progress" style="height: 4em; width: 20%; float:left; vertical-align: middle;">
<div class="progress-bar bg-light text-dark" style="width:100%">
vuoto
</div>
</div>
<div class="progress" style="height: 4em; width: 30%;float:left;">
<div class="progress-bar bg-success" style="width:66%">
Free Space
</div>
<div class="progress-bar bg-warning" style="width:34%">
<div>
Warning
<button class="btn btn-sm btn-primary">+</button>
</div>
</div>
</div>
<div class="progress" style="height: 4em; width: 10%; float:left;">
<div class="progress-bar bg-light text-dark" style="width:100%">
vuoto
</div>
</div>
<div class="progress" style="height: 4em; width: 40%;float:left;">
<div class="progress-bar bg-danger" style="width:15%">
Danger
</div>
<div class="progress-bar bg-secondary" style="width:20%">
pausa
</div>
<div class="progress-bar bg-success" style="width:55%">
Free Space
</div>
</div>
</div>
<div style="clear: both;"></div>
@code {
}