pandorafms/pandora_console/include/styles/progress.css

33 lines
495 B
CSS
Raw Normal View History

.progress_main {
2019-05-27 21:30:46 +02:00
height: 2.5em;
border: 1px solid #82b92e;
position: relative;
width: 100%;
display: inline-block;
2019-11-21 18:21:46 +01:00
display: flex;
}
2019-11-21 18:21:46 +01:00
.progress_main_noborder {
height: 2.5em;
position: relative;
width: 100%;
display: inline-block;
display: flex;
}
.progress_main:before {
content: attr(data-label);
position: absolute;
text-align: center;
left: 0;
right: 0;
margin-top: 0.2em;
2019-05-27 21:30:46 +02:00
}
.progress {
2019-05-27 21:30:46 +02:00
width: 0%;
background: #82b92e;
2019-05-27 21:30:46 +02:00
height: 100%;
float: left;
}