Spaces:
Running
Running
File size: 2,033 Bytes
150e09e 61e6f10 150e09e 61e6f10 150e09e 61e6f10 150e09e 61e6f10 150e09e 61e6f10 150e09e 61e6f10 150e09e 61e6f10 150e09e 61e6f10 150e09e 61e6f10 150e09e 61e6f10 150e09e 61e6f10 150e09e 61e6f10 150e09e 61e6f10 | 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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | :root {
--primary: #7c3aed;
--primary-dark: #5b21b6;
--bg-light: #f9fafb;
--bg-dark: #1f2937;
--text-light: #111827;
--text-dark: #f3f4f6;
--border-color: #e5e7eb;
--border-radius: 8px;
--shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: var(--bg-light);
color: var(--text-light);
line-height: 1.5;
transition: background-color 0.3s, color 0.3s;
}
body.dark {
background-color: var(--bg-dark);
color: var(--text-dark);
--border-color: #4b5563;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
.card {
background: white;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
padding: 1.5rem;
margin-bottom: 1.5rem;
}
body.dark .card {
background: #374151;
}
.btn {
background: var(--primary);
color: white;
border: none;
border-radius: var(--border-radius);
padding: 0.5rem 1rem;
font-weight: 500;
cursor: pointer;
transition: background 0.2s;
}
.btn:hover {
background: var(--primary-dark);
}
input, select {
padding: 0.5rem;
border-radius: var(--border-radius);
border: 1px solid var(--border-color);
background: white;
color: var(--text-light);
font-size: 1rem;
}
body.dark input,
body.dark select {
background: #4b5563;
color: var(--text-dark);
border-color: #6b7280;
}
.df-theme {
--gr-df-accent: var(--primary);
--gr-df-accent-soft: #ede9fe;
--gr-df-table-radius: var(--border-radius);
margin-top: 1rem;
}
body.dark .df-theme {
--gr-df-table-bg-even: #374151;
--gr-df-table-bg-odd: #1f2937;
--gr-df-table-border: #4b5563;
--gr-df-table-text: var(--text-dark);
--gr-df-accent-soft: #5b21b6;
}
@media (max-width: 768px) {
.card {
padding: 1rem;
}
.btn {
padding: 0.4rem 0.8rem;
font-size: 0.9rem;
}
} |