-
Notifications
You must be signed in to change notification settings - Fork 0
/
application.css
62 lines (61 loc) · 1.34 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
.button{
-fx-text-fill: white;
-fx-background-color: #1E90FF;
-fx-padding: 10px 20px;
-fx-font-weight: bold;
-fx-font-family: "Arial Narrow";
-fx-font-size: 20px;
}
.button:hover{
-fx-background-color: #6495ED;
}
* {
-fx-primary-color: #F0F8FF;
-fx-secondary-color: #ADD8E6;
-fx-focus-color: -fx-secondary-color;
}
.root{
-fx-background-color: #ADD8E6;
}
.text-field:disabled{
-fx-background-color: green;
}
.tab-header-area .tab-header-background {
-fx-background-color: -fx-primary-color;
}
.tab-pane .tab:selected {
-fx-background-color: -fx-secondary-color;
-fx-background-insets: 0 0 0 0;
-fx-background-radius: 0 0 0 0;
-fx-text-fill: white;
-fx-font-weight: bold;
-fx-font-family: "Arial Narrow";
-fx-font-size: 20px;
}
.tab .tab-label {
-fx-alignment: CENTER;
-fx-text-fill: black;
-fx-font-weight: bold;
-fx-padding: 0 10 0 10;
}
.tab-pane:top *.tab-header-area {
-fx-padding: 0 0 0 30;
}
.tab-pane {
-fx-background-color: transparent;
-fx-tab-min-width: 100px;
-fx-tab-min-height: 66px;
-fx-tab-max-height: 66px;
}
.tab-pane .tab {
-fx-background-color: transparent;
}
.tab-pane:focused .tab-header-area .headers-region .tab:selected .focus-indicator {
-fx-border-width: 0;
-fx-border-insets: 0 0 0 0;
-fx-border-radius: 0;
}
.text-field{
-fx-border-color: black;
-fx-background-color: white;
}