-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
54 lines (45 loc) · 950 Bytes
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
@font-face {
src: url("assets/BarlowCondensed-ExtraLight.ttf");
}
.button {
-fx-background-color: #ec446d;
-fx-text-fill: #ffffff;
-fx-border-color: #ec446d;
-fx-border-width: 1px;
-fx-border-radius: 10px;
-fx-background-radius: 10px;
}
.button:hover {
-fx-cursor: hand;
-fx-background-color: #fc658a;
-fx-scale-x: 0.9;
-fx-scale-y: 0.9;
}
.button:pressed {
-fx-scale-x: 0.8;
-fx-scale-y: 0.8;
}
.return-button {
-fx-background-color: none;
-fx-border-color: black;
-fx-border-width: 1px;
-fx-border-style: solid;
-fx-text-fill: black;
-fx-border-radius: 3px;
}
.return-button:hover {
-fx-background-color: none;
}
.home-pane .label {
-fx-font-family: "Barlow Condensed ExtraLight";
-fx-text-fill: #ec446d;
}
.home-pane .title-label {
-fx-font-size: 120px;
}
.home-pane .button {
-fx-font-size: 20px;
}
.table-cell {
-fx-alignment: CENTER;
}