mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-20 23:31:04 +00:00
57 lines
904 B
Plaintext
57 lines
904 B
Plaintext
.displayBar {
|
|
position: relative;
|
|
width: 236px;
|
|
height: 16px;
|
|
border: 1px solid #666666;
|
|
float: left;
|
|
margin: 0 5px 0 0;
|
|
overflow: hidden;
|
|
background: #000000;
|
|
}
|
|
|
|
.displayBarText {
|
|
position: absolute;
|
|
top: -2px;
|
|
left: 5px;
|
|
width: 100%;
|
|
height: 100%;
|
|
color: #ffffff;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.displayBarFill {
|
|
width: 0%;
|
|
height: 100%;
|
|
background: #40628a;
|
|
overflow: hidden;
|
|
float: left;
|
|
}
|
|
|
|
.displayBarFill.alignRight {
|
|
float: right;
|
|
}
|
|
|
|
.displayBarFill.good {
|
|
color: #ffffff;
|
|
background: @good-color;
|
|
}
|
|
|
|
.displayBarFill.notgood {
|
|
color: #ffffff;
|
|
background: #ffb400;
|
|
}
|
|
|
|
.displayBarFill.average {
|
|
color: #ffffff;
|
|
background: @average-color;
|
|
}
|
|
|
|
.displayBarFill.bad {
|
|
color: #ffffff;
|
|
background: @bad-color;
|
|
}
|
|
|
|
.displayBarFill.highlight {
|
|
color: #ffffff;
|
|
background: @highlight-color;
|
|
} |