-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
56 lines (46 loc) · 1 KB
/
styles.css
File metadata and controls
56 lines (46 loc) · 1 KB
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
.game-grid {
-fx-background-color: black, white;
-fx-padding: 0;
-fx-background-insets: 0, 1 1 1 1;
-fx-border-color: black;
-fx-border-width: 1;
}
.game-grid-cell {
-fx-background-color: black, white;
-fx-border-width: 1;
}
.game-grid-incorrect-cell {
-fx-background-color: black, red;
-fx-border-width: 1;
}
.cage-label-small{
-fx-padding: 5 0 0 5;
-fx-font-family: "consolas";
-fx-font-size: 12;
}
.cage-label-medium{
-fx-padding: 0 0 0 4;
-fx-font-family: "consolas";
-fx-font-size: 24;
}
.cage-label-large{
-fx-padding: 0 0 0 4;
-fx-font-family: "consolas";
-fx-font-size: 40;
}
.cell-label-small{
-fx-font-family: "consolas";
-fx-font-size: 32;
}
.cell-label-medium{
-fx-font-family: "consolas";
-fx-font-size: 80;
}
.cell-label-large{
-fx-font-family: "consolas";
-fx-font-size: 96;
}
.text-field{
-fx-font-family: "consolas";
-fx-font-size: 16;
}