Files
Progetto-ingegneria-del-sof…/src/main/resources/GUIScene/styles.css
T

83 lines
1.9 KiB
CSS

/* ==========================================
STILI ORIGINALI PREESISTENTI
========================================== */
.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: #711423;
-fx-border-width: 2;
-fx-border-radius: 15;
-fx-background-radius: 15;
-fx-background-color: #f18f1c;
}
.frame {
-fx-background-color: rgba(255,255,255,0.35);
-fx-background-radius: 15 15 0 0;
}
.action-button {
-fx-background-color: #9d0208;
-fx-text-fill: white;
-fx-font-family: "Inknut Antiqua";
-fx-font-size: 11px;
-fx-background-radius: 8;
-fx-border-radius: 8;
-fx-padding: 4 10 4 10;
-fx-cursor: hand;
}
.action-button:hover {
-fx-background-color: #b42224;
}
/* ==========================================
NUOVI STILI AGGIUNTI PER IL TOGGLE
========================================== */
/* Struttura base fissa dei label RMI e TCP per evitare modifiche di layout */
.toggle-label {
-fx-font-family: 'Cinzel';
-fx-font-size: 11px;
-fx-font-weight: bold;
-fx-text-fill: rgba(244,192,90,0.55); /* Colore non attivo (dorato trasparente) */
}
/* Stato attivo del protocollo selezionato */
.toggle-label:active-protocol {
-fx-font-family: 'Cinzel';
-fx-font-size: 11px;
-fx-font-weight: bold;
-fx-text-fill: #0c0601; /* Grigio scurissimo/nero sul cursore luminoso */
}