-
Notifications
You must be signed in to change notification settings - Fork 0
/
application.css
75 lines (60 loc) · 1.26 KB
/
application.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* JavaFX CSS - Leave this comment until you have at least create one rule which uses -fx-Property */
.root {
-fx-background-color: linear-gradient( black, Gray);
}
.button {
-fx-background-color: lightsteelblue;
-fx-text-fill: black;
-fx-font-family: cursive;
-fx-font-size: 10pt;
-fx-font-style: italic;
-fx-font-weight: bold;
-fx-border-style: solid;
}
.menu-bar{
-fx-background-color: transparent;
-fx-text-fill: white;
}
.menu .label{
-fx-background-color: black;
-fx-text-fill: white;
}
.menu-item{
-fx-background-color:black;
-fx-text-fill: white;
}
.radio-menu-item{
-fx-background-color: black;
-fx-text-fill: white;
}
#wikiLabel {
-fx-background-color: transparent;
-fx-text-fill: White;
-fx-font-family: cursive;
-fx-font-size: 55pt;
-fx-font-style: italic;
-fx-font-weight: bold;
}
#catLabel {
-fx-background-color: transparent;
-fx-text-fill: White;
-fx-font-family: cursive;
-fx-font-size: 45pt;
-fx-font-style: italic;
-fx-font-weight: bold;
}
#desLabel {
-fx-background-color: transparent;
-fx-text-fill: White;
-fx-font-family: cursive;
-fx-font-size: 30pt;
-fx-font-style: italic;
-fx-font-weight: bold;
}
.text-field {
-fx-background-color: WhiteSmoke;
-fx-font-size: 10pt;
-fx-font-style: italic;
-fx-font-weight: bold;
-fx-border-style: solid;
}