Files
Encelado/TradingBot/Components/Pages/Settings.razor.css
Alberto Balbo d25b4443c0 Aggiunta Bootstrap 5.3.3 (CSS, JS, RTL, mappe) al progetto
Sono stati aggiunti tutti i file principali di Bootstrap 5.3.3, inclusi CSS, JavaScript (bundle, ESM, UMD, minificati), versioni RTL, utility, reboot, griglia e relative mappe delle sorgenti. Questi file abilitano un sistema di design moderno, responsive e accessibile, con supporto per layout LTR e RTL, debugging avanzato tramite source map e tutte le funzionalità di Bootstrap per lo sviluppo dell’interfaccia utente. Nessuna modifica ai file esistenti.
2025-12-12 23:27:28 +01:00

222 lines
3.8 KiB
CSS

/* Settings Page */
.settings-page {
max-width: 900px;
display: flex;
flex-direction: column;
gap: 2rem;
}
.page-header h1 {
margin: 0;
font-size: 2rem;
font-weight: 700;
color: white;
}
.subtitle {
margin: 0.5rem 0 0 0;
color: #94a3b8;
font-size: 0.875rem;
}
.settings-section {
background: #0f1629;
border: 1px solid #1e293b;
border-radius: 0.75rem;
padding: 2rem;
}
.settings-section h2 {
margin: 0 0 1.5rem 0;
font-size: 1.25rem;
font-weight: 700;
color: white;
}
.settings-group {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.setting-item {
display: flex;
justify-content: space-between;
align-items: center;
gap: 2rem;
}
.setting-info {
flex: 1;
}
.setting-label {
font-size: 0.938rem;
font-weight: 600;
color: white;
margin-bottom: 0.25rem;
}
.setting-description {
font-size: 0.875rem;
color: #64748b;
}
.toggle-switch {
position: relative;
display: inline-block;
width: 3rem;
height: 1.5rem;
flex-shrink: 0;
}
.toggle-switch input {
opacity: 0;
width: 0;
height: 0;
}
.toggle-slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #334155;
transition: 0.3s;
border-radius: 1.5rem;
}
.toggle-slider:before {
position: absolute;
content: "";
height: 1.125rem;
width: 1.125rem;
left: 0.1875rem;
bottom: 0.1875rem;
background-color: white;
transition: 0.3s;
border-radius: 50%;
}
.toggle-switch input:checked + .toggle-slider {
background-color: #6366f1;
}
.toggle-switch input:checked + .toggle-slider:before {
transform: translateX(1.5rem);
}
.toggle-switch input:disabled + .toggle-slider {
opacity: 0.5;
cursor: not-allowed;
}
.setting-select {
padding: 0.625rem 1rem;
border-radius: 0.5rem;
border: 1px solid #334155;
background: #1a1f3a;
color: white;
font-size: 0.875rem;
font-weight: 600;
min-width: 150px;
}
.settings-actions {
display: flex;
justify-content: flex-end;
gap: 0.75rem;
}
.btn-primary, .btn-secondary {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
font-size: 0.875rem;
font-weight: 600;
border: none;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-primary {
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
color: white;
box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}
.btn-secondary {
background: #1e293b;
color: #cbd5e1;
border: 1px solid #334155;
}
.btn-secondary:hover {
background: #334155;
border-color: #475569;
}
/* Notification */
.notification {
position: fixed;
bottom: 2rem;
right: 2rem;
padding: 1rem 1.5rem;
border-radius: 0.5rem;
display: flex;
align-items: center;
gap: 0.75rem;
font-weight: 600;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
animation: slide-in 0.3s ease;
z-index: 1000;
}
@keyframes slide-in {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
.notification.success {
background: #064e3b;
border: 1px solid #065f46;
color: #6ee7b7;
}
.notification .bi {
font-size: 1.25rem;
}
/* Responsive */
@media (max-width: 768px) {
.setting-item {
flex-direction: column;
align-items: flex-start;
gap: 1rem;
}
.settings-actions {
flex-direction: column;
}
.btn-primary, .btn-secondary {
width: 100%;
justify-content: center;
}
}