Guest User

Untitled

a guest
Jul 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. # QPushButton
  2.  
  3. QPushButton {
  4. font: 75 12pt "Liberation Sans";
  5. color: rgb(255, 255, 255);
  6.  
  7. background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 0.67, stop: 0 rgb(250,250, 250), stop: 1 rgb(180, 180, 180));
  8.  
  9. border: 1px solid rgb(0, 0, 0);
  10. border-radius: 2px;
  11. }
  12.  
  13. QPushButton:hover {
  14. background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 0.67, stop: 0 rgb(230,230, 230), stop: 1 rgb(160, 160, 160));
  15. }
  16.  
  17. QPushButton:disabled {
  18. background-color: rgb(220, 220, 220);
  19. }
Add Comment
Please, Sign In to add comment