Spaces:
Running
Running
File size: 1,404 Bytes
348d961 ae5207e 348d961 ae5207e d5a01fe 259916f d5a01fe ae5207e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
/* Estilos personalizados para RoboCopy */
.robocopy-title {
color: #4ECDC4 !important; /* Color turquesa con !important para forzar el estilo */
font-weight: bold;
font-size: 2em; /* Tamaño más grande para destacar */
}
/* Estilos para los botones de ejemplo */
.stButton > button {
width: 100%;
min-height: 80px;
white-space: normal;
padding: 10px;
background-color: #f8f9fa;
border: 1px solid #dee2e6;
border-radius: 8px;
font-size: 14px;
color: #495057;
text-align: left;
margin: 5px 0;
transition: all 0.3s ease;
}
.stButton > button:hover {
background-color: #e9ecef;
border-color: #4ECDC4;
transform: translateY(-2px);
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/* Ajustes para el contenedor principal */
.main .block-container {
padding-top: 2rem;
max-width: 1000px;
background-color: rgba(255, 255, 255, 0.1);
}
.stButton > button {
background-color: #2C3E50;
color: white;
border: 1px solid #4ECDC4;
}
.stButton > button:hover {
background-color: #4ECDC4;
color: #2C3E50;
border-color: #2C3E50;
}
/* Estilos para títulos más compactos */
h1 {
font-size: 24px !important;
margin-bottom: 0.5rem !important;
color: #2C3E50;
}
.subtitle {
font-size: 16px;
color: #666;
margin-bottom: 1rem;
} |