-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
executable file
·176 lines (145 loc) · 3.8 KB
/
app.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
.background{
-fx-background-color:#d9b9b4;
}
/* For empty placeholder */
.label {
-fx-font-size: 15pt;
-fx-font-family: "Microsoft YaHei";
-fx-text-fill: black;
/* -fx-opacity: 0.5; */
}
.label-bright {
-fx-font-size: 10pt;
-fx-font-family: "Microsoft YaHei";
-fx-text-fill: black;
-fx-opacity: 0.1;
}
.label-header {
-fx-font-size: 30pt;
-fx-font-family: "Microsoft YaHei";
-fx-text-fill: black;
/* -fx-opacity: 1; */
}
.table-view {
-fx-base: #c0a4a0;
-fx-control-inner-background: #d9b9b4;
-fx-background-color: #d9b9b4;
-fx-table-cell-border-color: transparent;
-fx-table-header-border-color: transparent;
-fx-padding: 0;
}
/* Background color of the reminderTable */
.table-view{
-fx-background-color: #d9b9b4;
}
/* Background color of the reminderTable column */
.column-header-background{
-fx-background-color: #4A0D04;
}
.table-view .column-header, .table-view .filler {
-fx-size: 30;
-fx-border-width: 0 0 0 0;
-fx-background-color: transparent;
/* -fx-border-color:
transparent
transparent
derive(-fx-base, 80%)
transparent; */
-fx-border-insets: 0 10 1 0;
}
/* Label for the table column */
.table-view .column-header .label {
-fx-font-size: 15pt;
-fx-font-family: "Microsoft YaHei";
-fx-text-fill: white;
-fx-alignment: center;
-fx-opacity: 1;
}
/* Selected row color */
.table-view:focused .table-row-cell:filled:focused:selected {
-fx-background-color: #db7768;
}
/* Split pane color */
.split-pane:horizontal > .split-pane-divider {
-fx-border-color: transparent #4A0D04 transparent #4A0D04;
-fx-background-color: transparent, derive(#4A0D04,20%);
}
/* Padding space between the reminder table and top of window */
/* top right down left */
.split-pane {
-fx-padding: 0 0 0 0;
}
/* Root layout menu bar color */
.menu-bar {
-fx-background-color: derive(#1d1d1d,50%);
}
/* Root layout context menu color */
.context-menu {
-fx-background-color: derive(#1d1d1d,50%);
}
.menu-bar .label {
-fx-font-size: 14pt;
-fx-font-family: "Microsoft YaHei";
-fx-text-fill: white;
-fx-opacity: 0.9;
}
.menu .left-container {
-fx-background-color: black;
}
.text-field {
-fx-font-size: 12pt;
-fx-font-family: "Microsoft YaHei";
}
/*
* Metro style Push Button
* Author: Pedro Duque Vieira
* http://pixelduke.wordpress.com/2012/10/23/jmetro-windows-8-controls-on-java/
*/
.button {
-fx-padding: 0 0 0 0;
-fx-border-color: #db7768;
-fx-border-width: 2;
-fx-border-radius: 10;
-fx-background-radius: 10;
-fx-background-color: #db7768;
-fx-font-family: "Microsoft Yahei";
-fx-font-size: 11pt;
-fx-text-fill: #ffffff;
-fx-background-insets: 0 0 0 0, 0, 1, 2;
}
/* Button hover effect */
.button:hover {
-fx-background-color: #4A0D04;
-fx-border-color: #4A0D04;
}
/* Button onclick effect */
.button:pressed, .button:default:hover:pressed {
-fx-background-color: #f5f5f5;
-fx-border-width: 2;
-fx-border-radius: 10;
-fx-border-color: #4A0D04;
-fx-text-fill: #1d1d1d;
-fx-rotate: 10;
}
.button:focused {
-fx-border-color: #4A0D04;
-fx-border-width: 2;
-fx-border-radius: 10;
/* -fx-border-style: solid, segments(1, 1);
-fx-border-insets: 1 1 1 1, 0; */
}
.button:disabled, .button:default:disabled {
-fx-opacity: 0.4;
-fx-background-color: #1d1d1d;
-fx-text-fill: white;
}
.button:default {
-fx-background-color: -fx-focus-color;
-fx-text-fill: #ffffff;
}
.button:default:hover {
-fx-background-color: derive(-fx-focus-color,30%);
}
.gridpane{
-fx-background-color: black;
}