50 lines
1003 B
CSS
50 lines
1003 B
CSS
.card-list {
|
|
-fx-background-color: rgba(255,255,255,0.35);
|
|
-fx-background-radius: 15;
|
|
-fx-padding: 10;
|
|
}
|
|
|
|
.side-panel {
|
|
-fx-background-color: rgba(255,255,255,0.35);
|
|
-fx-background-radius: 15;
|
|
}
|
|
|
|
.label-small {
|
|
-fx-font-family: 'Inknut Antiqua';
|
|
-fx-font-size: 12px;
|
|
-fx-font-weight: bold;
|
|
-fx-text-fill: black;
|
|
}
|
|
|
|
.label-medium {
|
|
-fx-font-family: 'Inknut Antiqua';
|
|
-fx-font-size: 18px;
|
|
-fx-font-weight: bold;
|
|
-fx-text-fill: black;
|
|
}
|
|
|
|
.label-large {
|
|
-fx-font-family: 'Inknut Antiqua';
|
|
-fx-font-size: 50px;
|
|
-fx-font-weight: bold;
|
|
-fx-text-fill: black;
|
|
}
|
|
|
|
.player-card {
|
|
-fx-border-color: black;
|
|
-fx-border-width: 2;
|
|
-fx-border-radius: 15;
|
|
-fx-background-radius: 15;
|
|
-fx-background-color: #b42224;
|
|
}
|
|
|
|
.frame {
|
|
-fx-background-color:
|
|
#8B6914,
|
|
#FFF8DC,
|
|
#8B6914,
|
|
#FFF8DC;
|
|
-fx-background-insets: 0, 5, 10, 15;
|
|
-fx-background-radius: 15, 12, 8, 4;
|
|
-fx-padding: 15 15 15 15;
|
|
} |