Spaces:
Running
Running
File size: 1,300 Bytes
774fe36 | 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 62 63 64 65 66 67 68 69 70 | /* ===== Settings Page ===== */
.settings-layout {
width: 100%;
height: 100%;
overflow: hidden;
display: flex;
justify-content: center;
}
.settings-scroll {
width: 100%;
max-width: 700px;
overflow-y: auto;
padding: 20px 24px 40px;
}
.settings-section {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 16px 20px;
margin-bottom: 16px;
}
.settings-section-title {
font-size: 0.9rem;
font-weight: 700;
color: var(--accent);
margin-bottom: 14px;
padding-bottom: 8px;
border-bottom: 1px solid var(--border);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.settings-row {
display: flex;
align-items: center;
justify-content: space-between;
padding: 6px 0;
gap: 12px;
}
.settings-row label {
font-size: 0.85rem;
color: var(--text-secondary);
cursor: pointer;
user-select: none;
flex-shrink: 0;
}
.settings-checkbox {
width: 18px;
height: 18px;
accent-color: var(--accent);
cursor: pointer;
flex-shrink: 0;
}
.settings-section .form-group {
margin-bottom: 10px;
}
.settings-section .form-group label {
font-size: 0.78rem;
}
.settings-section .form-textarea {
font-size: 0.85rem;
} |