aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources/styles/main.css
blob: 886e7566bb2f09d4f0711181b2ecc66dd396157a (plain) (blame)
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
/* === shadow === */
.shadowed {
  -fx-effect: dropshadow(gaussian, rgba(100,100,100,0.8), 5, 0, 0, 3);
}

/* === background === */
/* -- basic -- */
.bg-white {
  -fx-background-color: white;
}
/* -- vehiclePane -- */
.bg-yellow {
  -fx-background-color: #FFE699;
}
.bg-status-green {
  -fx-background-color: #C5E0B4;
}
.bg-status-orange {
  -fx-background-color: #F8CBAD;
}
/* -- header areas -- */
.bg-blue {
  -fx-background-color: #2E75B6;
}
.bg-green {
  -fx-background-color: #548235;
}
.bg-light-orange {
  -fx-background-color: #BF9000;
}
.bg-dark-orange {
  -fx-background-color: #C55A11;
}
/* -- content areas -- */
.bg-gray-blue {
  -fx-background-color: #E8EAEF;
}
.bg-gray-green {
  -fx-background-color: #EBEFE8;
}
.bg-gray-orange {
  -fx-background-color: #EFEBE8;
}
/* -- edit area -- */
.bg-edit-area-orange {
  -fx-background-color: #FBE5D6;
}

/* === text === */
.text-big {
  -fx-font-size: 18px;
}

.text-medium {
  -fx-font-size: 14px;
}

.text-small {
  -fx-font-size: 14px;
}

/* === button === */
.button {
  -fx-background-radius: 0em;
  -fx-border-color: black;
}

.button-main {
  -fx-background-color: #548235;
  -fx-text-fill: white;
  -fx-font-weight: bold;
}

.button-free-status {
  -fx-background-color: #C5E0B4;
}

.button-other-status {
  -fx-background-color: #F8CBAD;
}

/* === menu item === */
.mi-free {
  -fx-background-color: #C5E0B4;
}

.mi-other {
  -fx-background-color: #F8CBAD;
}

.menu-item:focused .label {
  -fx-text-fill: black;
  -fx-font-weight: bold;
}