app1.css
890 Bytes
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
#appPage {
-fx-background-image: url("/images/th_bg.png");
}
#peopleImg{
-fx-image: url("/images/i_people.png");
-fx-background:transparent
}
#timeImg{
-fx-image: url("/images/i_date.png");
-fx-background:transparent
}
#namelabel{
-fx-font-size: 1.4em;
-fx-padding: 0 0 0 5;
-fx-text-alignment:left;
-fx-alignment:bottom-left;
-fx-text-fill: white
}
#timelabel{
-fx-font-size: 1.4em;
-fx-padding: 0 0 0 5;
-fx-text-alignment:left;
-fx-alignment:bottom-left;
-fx-text-fill: white
}
#appTitle{
-fx-font-size: 1.4em;
-fx-padding: 0 0 0 5;
-fx-text-alignment:center;
-fx-alignment:bottom-center;
-fx-text-fill: white
}
#tableView_memory .table-row-cell:even {
-fx-background: #ff7863;
}
#tableView_memory .table-row-cell:odd {
-fx-background: #a3ff97;
}
#tableView_memory .table-row-cell:empty {
-fx-background: white;
}