Spaces:
Sleeping
Sleeping
File size: 2,684 Bytes
62d43fc |
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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
/* Base styles */
:root {
--primary-blue: #4466ee;
--background-light: #f8f9fa;
--text-primary: #2c3e50;
--text-secondary: #6c757d;
--border-color: #e9ecef;
--shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
--shadow-md: 0 4px 6px rgba(0,0,0,0.1);
}
/* Layout and containers */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
/* Navigation */
.nav-container {
background: white;
border-bottom: 1px solid var(--border-color);
padding: 1rem 0;
}
.nav-menu {
display: flex;
align-items: center;
gap: 2rem;
}
.nav-item {
color: var(--text-secondary);
text-decoration: none;
font-weight: 500;
transition: color 0.2s ease;
}
.nav-item:hover,
.nav-item.active {
color: var(--primary-blue);
}
/* Cards and content blocks */
.card {
background: white;
border-radius: 8px;
box-shadow: var(--shadow-sm);
padding: 1.5rem;
margin-bottom: 1rem;
transition: box-shadow 0.3s ease;
}
.card:hover {
box-shadow: var(--shadow-md);
}
/* Form elements */
.input-group {
margin-bottom: 1rem;
}
.input {
width: 100%;
padding: 0.75rem;
border: 1px solid var(--border-color);
border-radius: 6px;
font-size: 0.95rem;
}
.select {
appearance: none;
background: white;
padding: 0.75rem;
border: 1px solid var(--border-color);
border-radius: 6px;
width: 100%;
}
/* Buttons */
.button {
background: var(--primary-blue);
color: white;
border: none;
border-radius: 6px;
padding: 0.75rem 1.5rem;
font-weight: 500;
cursor: pointer;
transition: opacity 0.2s ease;
}
.button:hover {
opacity: 0.9;
}
.button-secondary {
background: white;
color: var(--text-primary);
border: 1px solid var(--border-color);
}
/* Data display */
.table {
width: 100%;
border-collapse: collapse;
}
.table th,
.table td {
padding: 1rem;
border-bottom: 1px solid var(--border-color);
text-align: left;
}
.table th {
background: var(--background-light);
font-weight: 500;
}
/* Empty state */
.empty-state {
text-align: center;
padding: 3rem 1rem;
color: var(--text-secondary);
}
.empty-state-icon {
font-size: 3rem;
margin-bottom: 1rem;
color: var(--border-color);
}
/* Utilities */
.text-primary {
color: var(--text-primary);
}
.text-secondary {
color: var(--text-secondary);
}
.bg-light {
background: var(--background-light);
}
/* Responsive adjustments */
@media (max-width: 768px) {
.nav-menu {
gap: 1rem;
}
.card {
padding: 1rem;
}
.table th,
.table td {
padding: 0.75rem;
}
}
|