-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
30 lines (30 loc) · 2.69 KB
/
Copy pathstyles.css
File metadata and controls
30 lines (30 loc) · 2.69 KB
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
:root { color-scheme: dark; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: #071521; color: #f5f7f8; }
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; background: radial-gradient(circle at top, #123752 0, #071521 42%, #03090e 100%); }
.shell { width: min(920px, calc(100% - 32px)); margin: 0 auto; padding: 44px 0 28px; }
.hero { padding: 24px 0 30px; }
.eyebrow { margin: 0 0 8px; color: #79c7e7; font-size: .78rem; font-weight: 800; letter-spacing: .18em; }
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 10px; font-size: clamp(2.5rem, 9vw, 5.8rem); line-height: .92; letter-spacing: -.055em; }
.tagline { margin-bottom: 0; color: #b9c8d1; font-size: 1.08rem; }
.summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.summary article, .card { border: 1px solid rgba(255,255,255,.1); background: rgba(7,21,33,.74); box-shadow: 0 20px 55px rgba(0,0,0,.28); backdrop-filter: blur(14px); }
.summary article { padding: 18px; border-radius: 16px; }
.summary span { display: block; margin-bottom: 6px; color: #8fa7b5; font-size: .8rem; }
.summary strong { font-size: clamp(1rem, 3vw, 1.4rem); }
.card { padding: 22px; border-radius: 22px; }
.card-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
h2 { margin-bottom: 0; font-size: 1.5rem; }
button { border: 1px solid rgba(121,199,231,.55); border-radius: 999px; padding: 9px 14px; background: transparent; color: #dff6ff; font: inherit; font-weight: 700; cursor: pointer; }
button:hover { background: rgba(121,199,231,.12); }
.scores { margin: 0; padding: 0; list-style: none; }
.score-row { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 14px; padding: 17px 4px; border-top: 1px solid rgba(255,255,255,.08); }
.rank { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(121,199,231,.12); color: #79c7e7; font-weight: 900; }
.score-row:first-child .rank { background: #f2cc60; color: #171106; }
.score-value { font-size: clamp(1.25rem, 4vw, 1.8rem); font-weight: 900; letter-spacing: -.02em; }
.score-meta { margin-top: 4px; color: #8fa7b5; font-size: .85rem; }
.source { padding: 5px 9px; border-radius: 999px; background: rgba(255,255,255,.07); color: #bed0da; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.empty, footer { color: #8fa7b5; }
footer { padding: 20px 4px 0; font-size: .82rem; line-height: 1.5; }
code { color: #b7e8fb; }
@media (max-width: 650px) { .summary { grid-template-columns: 1fr; } .score-row { grid-template-columns: 46px 1fr; } .source { grid-column: 2; justify-self: start; } }