-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmenu.css
44 lines (39 loc) · 1.08 KB
/
menu.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
/*
STYLESHEET FOR MENU
*/
.menu {
-fx-background-color: #F4FFFB;
}
.function-button {
-fx-pref-height: 60px;
-fx-pref-width: 270px;
-fx-border-insets: 2px;
-fx-background-insets: 2px;
-fx-font: bolder 14pt "Lato Black";
-fx-background-radius: 16px;
-fx-background-color: linear-gradient(#465cd5 0%, #270ac1 25%, #270ac1 75%, #465cd5 100%);
-fx-text-fill: white;
}
.add-vertex-button {
-fx-pref-height: 60px;
-fx-pref-width: 270px;
-fx-border-insets: 2px;
-fx-background-insets: 2px;
-fx-font: bolder 14pt "Lato Black";
-fx-background-radius: 16px;
-fx-background-color: linear-gradient(#00ba23 0%, #1ea100 25%, #1ea100 75%, #00ba23 100%);
-fx-text-fill: white;
}
.reset-button {
-fx-pref-height: 60px;
-fx-pref-width: 270px;
-fx-border-insets: 2px;
-fx-background-insets: 2px;
-fx-font: bolder 14pt "Lato Black";
-fx-background-radius: 16px;
-fx-background-color: linear-gradient(#fd5a5a 0%, #ff0000 25%, #ff0000 75%, #fd5a5a 100%);
-fx-text-fill: white;
}
.status-box {
-fx-font: bold 14pt "arial";
}