Commit inicial - Sistema de Gestion Hotelera Hacienda San Angel

- Backend Node.js/Express con PostgreSQL
- Frontend React 19 con Vite
- Docker Compose para orquestacion
- Documentacion completa en README.md
- Scripts SQL para base de datos
- Configuracion de ejemplo (.env.example)
This commit is contained in:
Consultoria AS
2026-01-17 18:52:34 -08:00
commit 0211bea186
210 changed files with 47045 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
.property-detail-container {
padding: 20px;
font-family: 'Trebuchet MS', sans-serif;
}
.property-info-box {
display: flex;
justify-content: space-between;
background-color: #f8f8f8;
padding: 20px;
border-radius: 10px;
margin-bottom: 30px;
}
.property-info p,
.property-contact p {
margin-bottom: 10px;
}
.property-contact {
text-align: right;
}
input, select {
padding: 5px;
margin-left: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
.save-button {
background-color: #f2c300;
border: none;
padding: 10px 20px;
border-radius: 20px;
font-weight: bold;
color: white;
cursor: pointer;
}
.save-button:hover {
opacity: 0.9;
}