mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-05 07:02:36 +00:00
78 lines
1.1 KiB
Plaintext
78 lines
1.1 KiB
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;
|
|
}
|
|
|
|
.displayBarText.good {
|
|
color: white;
|
|
}
|
|
|
|
.displayBarText.notgood {
|
|
color: white;
|
|
}
|
|
|
|
.displayBarText.average {
|
|
color: white;
|
|
}
|
|
|
|
.displayBarText.bad {
|
|
color: white;
|
|
}
|
|
|
|
.displayBarText.highlight {
|
|
color: black;
|
|
}
|
|
|
|
.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;
|
|
}
|