All checks were successful
Build MuCaPy Executable / build-and-package (push) Successful in 1m42s
28 lines
581 B
Plaintext
28 lines
581 B
Plaintext
QProgressBar {
|
|
border: 2px solid #550000;
|
|
border-radius: 50px;
|
|
background-color: qradialgradient(
|
|
cx:0.5, cy:0.5,
|
|
fx:0.5, fy:0.5,
|
|
radius:1.0,
|
|
stop:0 #0d0d0d,
|
|
stop:1 #1a1a1a
|
|
);
|
|
text-align: center;
|
|
color: #cccccc;
|
|
font-family: "Fira Code", "OCR A Std", monospace;
|
|
font-style: italic;
|
|
font-size: 14px;
|
|
padding: 5px;
|
|
}
|
|
|
|
QProgressBar::chunk {
|
|
background: qlineargradient(
|
|
x1:0, y1:0, x2:1, y2:1,
|
|
stop:0 #ff0033,
|
|
stop:1 #ff6666
|
|
);
|
|
border-radius: 50px;
|
|
margin: 1px;
|
|
}
|