No Description

style2.qss 655B

12345678910111213141516171819202122232425262728293031323334353637
  1. QWidget { background-color: white;}
  2. ClickableLabel { background-color: white;}
  3. QWidget > QPushButton
  4. {
  5. background-color: #ed1c24;
  6. border-style: outset;
  7. border-width: 2px;
  8. border-color:#b51218;
  9. color:#f8f8f8;
  10. }
  11. QPushButton:hover
  12. {
  13. background-color: #de1219;
  14. border-color:#ed1d24;
  15. }
  16. #Banner {
  17. background-color:#666;
  18. }
  19. #LogoFrame {
  20. background-image: url(://logo);
  21. border: 0px;
  22. repeat: no-repeat;
  23. }
  24. #Banner > #HeaderLabel{
  25. background-color:#666;
  26. color: white;
  27. }
  28. QTextEdit, QPlainTextEdit {
  29. background-color:white;
  30. border-width: 2px;
  31. border-color: #a6a5aa;
  32. border-style: inset;
  33. border-radius: 4px;
  34. }