feat: NCS-17 Implement basic ScalaFX UI (#14)
Build & Test (NowChessSystems) TeamCity build finished
Co-authored-by: shahdlala66 <shahd.lala66@gmail.com> Reviewed-on: #14 Co-authored-by: Janis <janis.e.20@gmx.de> Co-committed-by: Janis <janis.e.20@gmx.de>
|
After Width: | Height: | Size: 161 B |
|
After Width: | Height: | Size: 188 B |
|
After Width: | Height: | Size: 188 B |
|
After Width: | Height: | Size: 286 B |
|
After Width: | Height: | Size: 245 B |
|
After Width: | Height: | Size: 266 B |
|
After Width: | Height: | Size: 297 B |
|
After Width: | Height: | Size: 258 B |
|
After Width: | Height: | Size: 263 B |
|
After Width: | Height: | Size: 313 B |
|
After Width: | Height: | Size: 251 B |
|
After Width: | Height: | Size: 275 B |
|
After Width: | Height: | Size: 305 B |
|
After Width: | Height: | Size: 281 B |
|
After Width: | Height: | Size: 280 B |
@@ -0,0 +1,30 @@
|
||||
/* Arabian Chess GUI Styles */
|
||||
|
||||
.root {
|
||||
-fx-font-family: "Comic Sans MS", "Comic Sans", cursive;
|
||||
-fx-background-color: #F3C8A0;
|
||||
}
|
||||
|
||||
.button {
|
||||
-fx-background-radius: 8;
|
||||
-fx-padding: 8 16 8 16;
|
||||
-fx-font-family: "Comic Sans MS", cursive;
|
||||
-fx-font-size: 12px;
|
||||
-fx-cursor: hand;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
-fx-opacity: 0.8;
|
||||
}
|
||||
|
||||
.label {
|
||||
-fx-font-family: "Comic Sans MS", cursive;
|
||||
}
|
||||
|
||||
.dialog-pane {
|
||||
-fx-background-color: #F3C8A0;
|
||||
}
|
||||
|
||||
.dialog-pane .content {
|
||||
-fx-font-family: "Comic Sans MS", cursive;
|
||||
}
|
||||