-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.css
93 lines (93 loc) · 2.55 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
.button {
-fx-font-size: 14px;
-fx-background-color:
linear-gradient(#f2f2f2, #d6d6d6),
linear-gradient(#fcfcfc 0%, #d9d9d9 20%, #d6d6d6 100%),
linear-gradient(#dddddd 0%, #f6f6f6 50%);
-fx-background-radius: 8,7,6;
-fx-background-insets: 0,1,2;
-fx-font-style: italic;
-fx-text-fill: navy;
-fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 5, 0.0 , 0 , 1 );
}
#delete {
-fx-text-fill: firebrick;
}
.combo-box {
-fx-font-size: 14px;
-fx-background-color:
linear-gradient(#f2f2f2, #d6d6d6),
linear-gradient(#fcfcfc 0%, #d9d9d9 20%, #d6d6d6 100%),
linear-gradient(#dddddd 0%, #f6f6f6 50%);
-fx-background-radius: 8,7,6;
-fx-background-insets: 0,1,2;-fx-font-style: italic;
-fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 5, 0.0 , 0 , 1 );
}
.combo-box .list-cell {
-fx-background: white;
-fx-background-color: white;
-fx-font-style: italic;
-fx-text-fill: navy;
-fx-padding: 3 0 2 7;
-fx-cell-size: 1.66667em;
}
.label {
-fx-font-size: 14px;
-fx-font-weight: bold;
-fx-text-fill: #333333;
-fx-effect: innershadow( three-pass-box , rgba(0,0,255,0.7) , 6, 0.0 , 0 , 2 );
}
#message{
-fx-font-weight: normal;
}
#location{
-fx-effect: none;
-fx-background-color: firebrick;
-fx-text-fill: white;
}
.text-field {
-fx-background-color: #a9a9a9 , white , white;
-fx-background-insets: 0 -1 -1 -1, 0 0 0 0, 0 -1 3 -1;
-fx-text-fill: navy;
}
.text-field:focused {
-fx-background-color: #a9a9a9 , white , white;
-fx-background-insets: 0 -1 -1 -1, 0 0 0 0, 0 -1 3 -1;
}
.text-area {
-fx-background-color: #a9a9a9 , white , white;
-fx-background-insets: 0 -1 -1 -1, 0 0 0 0, 0 -1 3 -1;
-fx-text-fill: navy;
}
.text-area:focused {
-fx-background-color: #a9a9a9 , white , white;\
-fx-background-insets: 0 -1 -1 -1, 0 0 0 0, 0 -1 3 -1;
}
.table-view {
-fx-background-color: white;
-fx-border-color: firebrick;
}
.table-view .column-header {
-fx-background-color:
linear-gradient(#f2f2f2, #d6d6d6),
linear-gradient(#fcfcfc 0%, #d9d9d9 20%, #d6d6d6 100%),
linear-gradient(#dddddd 0%, #f6f6f6 50%);
}
.list-view {
-fx-background-color: navy;
}
.list-view .list-cell {
-fx-font-size: 14px;
-fx-background-color: navy;
-fx-text-fill: white;
}
.list-view .list-cell:hover {
-fx-background-color: firebrick;
}
.list-view .list-cell:selected {
-fx-background-color: white;
-fx-text-fill: firebrick ;
}
#hbox {
-fx-background-color: white;
}