|
1 | 1 | :root { |
2 | | - --bg: #f9fafb; |
| 2 | + --bg: radial-gradient(120% 120% at 20% 20%, #f8fbff 0%, #eef2ff 45%, #f5f7fb 100%); |
3 | 3 | --card: #ffffff; |
4 | 4 | --text: #0f172a; |
5 | | - --muted: #64748b; |
6 | | - --accent: #2563eb; |
7 | | - --border: #e2e8f0; |
8 | | - --success: #22c55e1f; |
9 | | - --warn: #f973161f; |
10 | | - --muted-cell: #cbd5e11f; |
11 | | - --perf: #2563eb14; |
| 5 | + --muted: #52616b; |
| 6 | + --accent: #0b57d0; |
| 7 | + --accent-weak: #e7f0ff; |
| 8 | + --border: #e3e7ef; |
| 9 | + --success: #22c55e1a; |
| 10 | + --warn: #f973161a; |
| 11 | + --muted-cell: #cbd5e11a; |
| 12 | + --perf: #0b57d018; |
| 13 | + --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.14); |
| 14 | + --shadow-sm: 0 10px 26px rgba(15, 23, 42, 0.10); |
12 | 15 | } |
13 | 16 |
|
14 | 17 | * { box-sizing: border-box; } |
15 | 18 | body { |
16 | 19 | margin: 0; |
17 | | - padding: 24px; |
| 20 | + min-height: 100vh; |
| 21 | + padding: 28px 24px 44px; |
18 | 22 | background: var(--bg); |
19 | 23 | color: var(--text); |
20 | | - font: 15px/1.5 "Roboto", "Inter", "Segoe UI", sans-serif; |
| 24 | + font: 15px/1.65 "Roboto", "Segoe UI", "Inter", system-ui, -apple-system, sans-serif; |
| 25 | + box-sizing: border-box; |
21 | 26 | } |
22 | 27 |
|
23 | | -h1, h2, h3 { margin: 0 0 8px 0; font-weight: 700; } |
| 28 | +.page-shell { |
| 29 | + width: min(1180px, 96vw); |
| 30 | + margin: 0 auto; |
| 31 | + padding: clamp(12px, 3vw, 24px); |
| 32 | + box-sizing: border-box; |
| 33 | +} |
| 34 | + |
| 35 | +.page-shell--full { |
| 36 | + width: 100%; |
| 37 | + max-width: none; |
| 38 | + margin: 0; |
| 39 | + padding: 0 clamp(12px, 3vw, 20px); |
| 40 | +} |
| 41 | + |
| 42 | +h1, h2, h3 { margin: 0 0 12px 0; letter-spacing: -0.01em; } |
| 43 | +h1 { font-weight: 900; font-size: 28px; } |
| 44 | +h2 { font-weight: 800; font-size: 20px; } |
| 45 | +h3 { font-weight: 700; font-size: 17px; color: var(--muted); } |
24 | 46 |
|
25 | 47 | .page-header { |
26 | 48 | display: flex; |
27 | | - justify-content: space-between; |
28 | | - align-items: flex-end; |
29 | | - padding: 14px 16px; |
30 | | - margin-bottom: 16px; |
31 | | - background: var(--card); |
| 49 | + flex-direction: column; |
| 50 | + align-items: flex-start; |
| 51 | + gap: 10px; |
| 52 | + padding: 18px 20px; |
| 53 | + margin-bottom: 20px; |
| 54 | + background: linear-gradient(135deg, #fff, #f3f7ff); |
32 | 55 | border: 1px solid var(--border); |
33 | | - border-radius: 16px; |
34 | | - box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08); |
| 56 | + border-radius: 18px; |
| 57 | + box-shadow: var(--shadow-lg); |
35 | 58 | } |
36 | 59 |
|
37 | 60 | .meta { color: var(--muted); margin: 0; } |
38 | 61 |
|
39 | | -.legend { display: flex; gap: 10px; flex-wrap: wrap; color: var(--muted); } |
40 | | -.legend span { background: #f1f5f9; padding: 4px 8px; border-radius: 8px; border: 1px solid var(--border); } |
| 62 | +.legend { |
| 63 | + display: flex; |
| 64 | + gap: 10px; |
| 65 | + flex-wrap: wrap; |
| 66 | + color: var(--muted); |
| 67 | +} |
| 68 | +.legend span { |
| 69 | + padding: 4px 2px; |
| 70 | + border-radius: 6px; |
| 71 | + border: none; |
| 72 | + background: transparent; |
| 73 | + font-weight: 600; |
| 74 | + color: var(--muted); |
| 75 | +} |
41 | 76 |
|
42 | | -.nav-section { margin: 16px 0; background: var(--card); padding: 12px 14px; border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05); } |
43 | | -.link-list { list-style: none; padding-left: 0; margin: 4px 0; } |
44 | | -.link-list li { margin: 4px 0; } |
45 | | -.link-list a { color: var(--text); text-decoration: none; border-bottom: 1px solid transparent; } |
46 | | -.link-list a:hover { color: var(--accent); border-color: var(--accent); } |
47 | | -.group-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; } |
| 77 | +.nav-section { |
| 78 | + margin: 18px 0; |
| 79 | + background: var(--card); |
| 80 | + padding: 16px 18px; |
| 81 | + border: 1px solid var(--border); |
| 82 | + border-radius: 18px; |
| 83 | + box-shadow: var(--shadow-sm); |
| 84 | +} |
| 85 | +.link-list { |
| 86 | + list-style: none; |
| 87 | + padding-left: 0; |
| 88 | + margin: 6px 0; |
| 89 | + display: flex; |
| 90 | + flex-direction: column; |
| 91 | + gap: 8px; |
| 92 | +} |
| 93 | +.link-list li { margin: 0; } |
| 94 | +.link-list a { |
| 95 | + display: inline-flex; |
| 96 | + align-items: center; |
| 97 | + gap: 6px; |
| 98 | + width: 100%; |
| 99 | + justify-content: center; |
| 100 | + color: var(--text); |
| 101 | + text-decoration: none; |
| 102 | + font-weight: 700; |
| 103 | + letter-spacing: 0.01em; |
| 104 | + background: var(--accent-weak); |
| 105 | + padding: 8px 12px; |
| 106 | + border-radius: 12px; |
| 107 | + border: 1px solid var(--border); |
| 108 | + box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06); |
| 109 | + transition: transform 0.1s ease, box-shadow 0.12s ease, border-color 0.12s ease; |
| 110 | +} |
| 111 | +.link-list a:hover { |
| 112 | + color: var(--accent); |
| 113 | + border-color: var(--accent); |
| 114 | + box-shadow: 0 8px 16px rgba(11, 87, 208, 0.16); |
| 115 | + transform: translateY(-1px); |
| 116 | +} |
| 117 | +.group-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; } |
48 | 118 |
|
49 | | -.score-table { width: 100%; border-collapse: collapse; margin-top: 12px; background: var(--card); border: 1px solid var(--border); box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04); } |
50 | | -.score-table th, .score-table td { border: 1px solid var(--border); padding: 8px 10px; text-align: center; } |
51 | | -.score-table th { background: #f8fafc; color: var(--text); font-weight: 700; } |
52 | | -.score-table .task-header { background: #eef2ff; } |
| 119 | +.score-table { |
| 120 | + width: 100%; |
| 121 | + border-collapse: collapse; |
| 122 | + margin-top: 12px; |
| 123 | + background: var(--card); |
| 124 | + border: 1px solid var(--border); |
| 125 | + box-shadow: var(--shadow-sm); |
| 126 | + border-radius: 16px; |
| 127 | + overflow: hidden; |
| 128 | +} |
| 129 | +.score-table th, .score-table td { |
| 130 | + border: 1px solid var(--border); |
| 131 | + padding: 10px 11px; |
| 132 | + text-align: center; |
| 133 | +} |
| 134 | +.score-table tbody tr { |
| 135 | + transition: background-color 0.12s ease, box-shadow 0.12s ease; |
| 136 | +} |
| 137 | +.score-table th { |
| 138 | + background: #f6f8fc; |
| 139 | + color: var(--text); |
| 140 | + font-weight: 800; |
| 141 | +} |
| 142 | +.score-table .task-header { background: #eaf0ff; } |
| 143 | +.score-table tbody tr:hover { |
| 144 | + background: #eaf0ff; |
| 145 | + box-shadow: inset 3px 0 0 var(--accent); |
| 146 | +} |
53 | 147 | .task-title { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; } |
54 | | -.task-name { text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: #1e293b; } |
55 | | -.deadline { color: #dc2626; font-weight: 700; } |
| 148 | +.task-name { text-transform: uppercase; letter-spacing: 0.08em; font-weight: 800; color: #1e293b; } |
| 149 | +.deadline { color: #d32f2f; font-weight: 800; } |
56 | 150 |
|
57 | | -.name { text-align: left; font-weight: 700; } |
| 151 | +.name { text-align: left; font-weight: 800; } |
58 | 152 | .narrow { white-space: nowrap; } |
59 | | -.total { font-weight: 800; color: #111827; } |
| 153 | +.total { font-weight: 900; color: #0f172a; } |
60 | 154 |
|
61 | 155 | .cell-success { background: var(--success); } |
62 | 156 | .cell-warning { background: var(--warn); } |
63 | 157 | .cell-muted { background: var(--muted-cell); } |
64 | 158 | .cell-empty { background: #f8fafc; color: var(--muted); } |
65 | 159 | .perf-cell { background: var(--perf); } |
66 | | -.deadline-cell { color: #dc2626; } |
| 160 | +.deadline-cell { color: #d32f2f; } |
67 | 161 | .muted { color: var(--muted); } |
68 | 162 |
|
| 163 | +button { |
| 164 | + background: var(--accent); |
| 165 | + color: #fff; |
| 166 | + border: none; |
| 167 | + border-radius: 12px; |
| 168 | + padding: 11px 15px; |
| 169 | + font-weight: 800; |
| 170 | + cursor: pointer; |
| 171 | + box-shadow: 0 6px 14px rgba(11, 87, 208, 0.28); |
| 172 | + transition: transform 0.1s ease, box-shadow 0.12s ease, filter 0.12s ease; |
| 173 | +} |
| 174 | +button:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(11, 87, 208, 0.32); filter: brightness(1.02); } |
| 175 | +button:active { transform: translateY(0); box-shadow: 0 5px 12px rgba(11, 87, 208, 0.24); } |
| 176 | + |
| 177 | +input[type="text"] { |
| 178 | + border: 1px solid var(--border); |
| 179 | + border-radius: 10px; |
| 180 | + padding: 9px 11px; |
| 181 | + min-width: 150px; |
| 182 | + font-size: 14px; |
| 183 | + background: #f9fbff; |
| 184 | + transition: border-color 0.12s ease, box-shadow 0.12s ease; |
| 185 | +} |
| 186 | +input[type="text"]:focus { |
| 187 | + outline: none; |
| 188 | + border-color: var(--accent); |
| 189 | + box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.15); |
| 190 | +} |
| 191 | + |
| 192 | +.action-link { |
| 193 | + display: inline-flex; |
| 194 | + align-items: center; |
| 195 | + gap: 6px; |
| 196 | + padding: 8px 12px; |
| 197 | + background: var(--accent-weak); |
| 198 | + border: 1px solid var(--border); |
| 199 | + border-radius: 12px; |
| 200 | + font-weight: 700; |
| 201 | + color: var(--text); |
| 202 | + text-decoration: none; |
| 203 | + box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06); |
| 204 | + transition: transform 0.1s ease, box-shadow 0.12s ease, border-color 0.12s ease; |
| 205 | +} |
| 206 | +.action-link:hover { |
| 207 | + color: var(--accent); |
| 208 | + border-color: var(--accent); |
| 209 | + box-shadow: 0 8px 16px rgba(11, 87, 208, 0.16); |
| 210 | + transform: translateY(-1px); |
| 211 | +} |
| 212 | + |
69 | 213 | @media (max-width: 1100px) { |
70 | | - body { padding: 12px; font-size: 14px; } |
71 | | - .score-table th, .score-table td { padding: 6px 6px; } |
| 214 | + body { padding: 18px; font-size: 14px; } |
| 215 | + .score-table th, .score-table td { padding: 8px 8px; } |
72 | 216 | } |
| 217 | + |
| 218 | +.legend-table { border-collapse: collapse; margin-top: 6px; } |
| 219 | +.legend-table td { padding: 5px 10px; border: none; text-align: left; } |
| 220 | +.legend-term { font-weight: 900; color: var(--text); white-space: nowrap; } |
| 221 | +.legend-def { color: var(--muted); } |
0 commit comments