aboutsummaryrefslogtreecommitdiff
path: root/src/gui/style.css
blob: 3e18f9d6cde019f0f4c07add5ccc0c1a0e9cb229 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Button { 
    -fx-background-color: rgba(0, 0, 0, 0.5); 
    -fx-text-fill: white;
    -fx-padding: .5em;
    -fx-font-size: 25;
    -fx-background-radius: 10;
}

Button:hover {
    -fx-background-color: rgb(255, 255, 255);
    -fx-text-fill: rgb(0, 0, 0);
}

Button:pressed {
    -fx-background-color: rgb(231, 231, 231);
    -fx-text-fill: rgb(0, 0, 0);
}

.pad {
    -fx-padding: 1em;
}