Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. .body {
  2. -fx-background-color: gray;
  3. }
  4. .button{
  5.  
  6. -fx-background-color: #d5d5d5;
  7. -fx-pref-width: 250px;
  8. -fx-pref-height: 100px;
  9. -fx-font-size: 30px;
  10. -fx-font-weight: bold;
  11.  
  12. }
  13. .button:hover {
  14. -fx-background-color: #26ffa1;
  15. }
  16.  
  17. .buttonKoszyk {
  18. -fx-background-color: #0ead26;
  19. }
  20. .buttonZamow {
  21. -fx-background-color: #1b63ff;
  22. }
  23. .buttonAnuluj {
  24. -fx-background-color: #ff591c;
  25. }
  26.  
  27. #topBar {
  28. -fx-background-color: green;
  29. -fx-font-size: 25px;
  30. -fx-font: yellow;
  31. }
  32.  
  33. .table-view {
  34. -fx-pref-height: 40px;
  35. -fx-font-size: 15px;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement