-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
david novosartov
authored and
david novosartov
committed
Jun 27, 2018
1 parent
ee2a3ef
commit ad2a428
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
src/edu/project/Novosardian/David/Grade/Calculator/button.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
.button | ||
{ | ||
-fx-font-weight: bold; | ||
-fx-background-color: #2196f3; | ||
-fx-background-radius: 22; | ||
-fx-font-size: 16; | ||
-fx-text-fill: white; | ||
} | ||
|
||
.button:hover | ||
{ | ||
-fx-font-weight: bold; | ||
-fx-background-color: white; | ||
-fx-background-radius: 22; | ||
-fx-font-size: 16; | ||
-fx-text-fill: #2196f3; | ||
-fx-border-color: #2196f3; | ||
-fx-border-radius: 20; | ||
-fx-border-width: 3; | ||
|
||
} | ||
|
||
.button:pressed | ||
{ | ||
-fx-font-weight: bold; | ||
-fx-background-color: white; | ||
-fx-background-radius: 22; | ||
-fx-font-size: 16; | ||
-fx-text-fill: #2196f3; | ||
-fx-border-color: #2196f3; | ||
-fx-border-radius: 20; | ||
-fx-border-width: 3; | ||
-fx-rotate: 10; | ||
} | ||
|
||
* | ||
{ | ||
-fx-primary: #2A2E37; | ||
-fx-secondary: #FFFF8D; | ||
-fx-primarytext: #B2B2B2; | ||
} | ||
|
||
.root | ||
{ | ||
-fx-background-color: -fx-primary; | ||
} |