This repository has been archived by the owner on Jul 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainStyle.css
80 lines (72 loc) · 1.81 KB
/
MainStyle.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
/*
Created on : Mar 19, 2016, 10:12:41 PM
Author : Hainguyen
*/
.root{
-fx-background-color: white;
}
.button {
-fx-text-fill: white;
-fx-border-color: white;
-fx-background-color: #009900;
-fx-border-width: 0;
-fx-border-radius: 0 0 3px 3px ;
-fx-display-caret: true;
-fx-position-shape: true;
}
.button:after{
-fx-position: absolute;
-fx-animated: true;
}
.button:hover,
.button:active {
-fx-text-fill: #009900;
-fx-background-color: white;
}
.button:focused{
}
.TextField{
-fx-background-color: white;
}
.Cancel{
-fx-text-fill: white;
-fx-border-color: white;
-fx-background-color: red;
}
.Cancel:hover,
.Cancel:active{
-fx-text-fill: red;
-fx-background-color: white;
}
.x{
-fx-text-fill: #aaff80;
-fx-border-color: white;
-fx-background-color: white;
}
.x:hover,
.x:active{
-fx-text-fill: #009900;
}
/*-------------TABPANE------------*/
.tab-pane .tab-header-background,
.tab-pane .tab-header-area {
-fx-background-color: white;
}
.tab-pane .tab-label{
-fx-text-fill: white;
-fx-font-weight: bold;
}
.tab-pane .tab-header-area .headers-region .accountStatTab:hover .tab-container,
.tab-pane .tab-header-area .headers-region .withdrawTab:hover .tab-container,
.tab-pane .tab-header-area .headers-region .accountStatTab:selected .tab-container,
.tab-pane .tab-header-area .headers-region .withdrawTab:selected .tab-container
{
-fx-background-color: white;
}
.tab-pane .tab-header-area .headers-region .accountStatTab:hover .tab-container > .tab-label,
.tab-pane .tab-header-area .headers-region .withdrawTab:hover .tab-container > .tab-label,
.tab-pane .tab-header-area .headers-region .accountStatTab:selected .tab-container > .tab-label,
.tab-pane .tab-header-area .headers-region .withdrawTab:selected .tab-container > .tab-label
{
-fx-text-fill: #009900;
}