Skip to content

Commit

Permalink
fourth commit
Browse files Browse the repository at this point in the history
  • 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.
46 changes: 46 additions & 0 deletions src/edu/project/Novosardian/David/Grade/Calculator/button.css
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;
}

0 comments on commit ad2a428

Please sign in to comment.