Añadidos recursos gráficos (Logo.png y styles.css)

This commit is contained in:
Luis.Aguilar 2025-03-09 11:32:50 -06:00
parent bdb232333f
commit 40188bfb53
2 changed files with 56 additions and 0 deletions
src/main/resources

BIN
src/main/resources/logo.png Normal file

Binary file not shown.

After

(image error) Size: 649 KiB

View File

@ -0,0 +1,56 @@
/* styles.css */
.root {
-fx-background-color: #f4f4f4; /* Fondo claro */
}
.seat-button {
-fx-background-color: #4CAF50; /* Verde */
-fx-text-fill: white;
-fx-font-size: 14px;
-fx-font-weight: bold;
-fx-padding: 10px;
-fx-border-radius: 5px;
-fx-background-radius: 5px;
}
.seat-button:disabled {
-fx-background-color: #f44336; /* Rojo para asientos vendidos */
}
.seat-grid {
-fx-background-color: #ffffff; /* Fondo blanco */
-fx-padding: 20px;
-fx-border-color: #cccccc;
-fx-border-width: 1px;
-fx-border-radius: 10px;
-fx-background-radius: 10px;
}
.payment-window {
-fx-background-color: #ffffff; /* Fondo blanco */
-fx-padding: 20px;
-fx-border-color: #cccccc;
-fx-border-width: 1px;
-fx-border-radius: 10px;
-fx-background-radius: 10px;
}
.title {
-fx-font-size: 24px;
-fx-font-weight: bold;
-fx-text-fill: #333333;
}
.button {
-fx-background-color: #2196F3; /* Azul */
-fx-text-fill: white;
-fx-font-size: 14px;
-fx-font-weight: bold;
-fx-padding: 10px 20px;
-fx-border-radius: 5px;
-fx-background-radius: 5px;
}
.button:hover {
-fx-background-color: #1976D2; /* Azul más oscuro al pasar el mouse */
}