seperate files for the CPU style ; and more error resistant
All checks were successful
Build MuCaPy Executable / build-and-package (push) Successful in 1m42s

This commit is contained in:
rattatwinko
2025-06-08 14:12:42 +02:00
parent 003ea7ddcf
commit dffeb995a0
4 changed files with 146 additions and 14 deletions

View File

@@ -0,0 +1,27 @@
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;
}