pandorafms/pandora_console/include/styles/progress.css

36 lines
555 B
CSS
Raw Normal View History

.progress_main {
2019-05-27 21:30:46 +02:00
height: 2.5em;
2022-12-23 10:21:53 +01:00
border: 2px solid #82b92e;
position: relative;
width: 100%;
display: inline-block;
2019-11-21 18:21:46 +01:00
display: flex;
2023-01-30 13:39:27 +01:00
border-radius: 4px;
2023-03-21 18:12:02 +01:00
line-height: 9pt;
font-size: 9pt;
}
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;
}