diff options
| author | Martin Kagamino Lehoux <martin@lehoux.net> | 2026-08-11 21:50:31 +0200 |
|---|---|---|
| committer | Martin Kagamino Lehoux <martin@lehoux.net> | 2026-08-11 21:50:31 +0200 |
| commit | 7139d25654ffcb63fff585e83430101f969f8247 (patch) | |
| tree | 6e4d339d327851009b691d6f053d3c6866b51ff2 /web/static | |
| parent | f7c85b160d17f8cf7de01c4b505501a3821aedbf (diff) | |
refactor(web): extract embedded stylesheet
Diffstat (limited to 'web/static')
| -rw-r--r-- | web/static/style.css | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/web/static/style.css b/web/static/style.css new file mode 100644 index 0000000..7bb63aa --- /dev/null +++ b/web/static/style.css @@ -0,0 +1,47 @@ +:root { color-scheme: light; font-family: system-ui, sans-serif; background: #f5f3ee; color: #1d2a22; } +* { box-sizing: border-box; } +body { margin: 0; } +a { color: #18794e; } +.site-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem max(1rem, calc((100vw - 70rem) / 2)); background: #173b2a; color: #fff; } +.site-header a { color: #fff; text-decoration: none; } +.brand { font-weight: 750; letter-spacing: .02em; } +.nav { display: flex; gap: 1rem; font-size: .95rem; } +.container { width: min(70rem, calc(100% - 2rem)); margin: 0 auto; padding: 2.5rem 0 4rem; } +.eyebrow { margin: 0 0 .4rem; color: #18794e; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; } +h1 { margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; } +.lead { max-width: 42rem; color: #5b675f; } +.panel { margin-top: 2rem; padding: 1.25rem; border: 1px solid #d9ded8; border-radius: 1rem; background: #fff; box-shadow: 0 1rem 2.5rem #173b2a0d; } +.toolbar { display: flex; align-items: end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; } +.button { display: inline-block; border: 0; border-radius: .65rem; padding: .7rem 1rem; background: #d96932; color: #fff; font: inherit; font-weight: 700; text-decoration: none; cursor: pointer; } +.button.secondary { background: #e8eee9; color: #173b2a; } +label { display: grid; gap: .35rem; color: #5b675f; font-size: .85rem; font-weight: 650; } +input { border: 1px solid #c8d0c9; border-radius: .55rem; padding: .65rem .7rem; font: inherit; color: inherit; background: #fff; } +.form-row { display: flex; align-items: end; gap: .75rem; flex-wrap: wrap; } +.sync-progress { display: grid; gap: .7rem; margin-top: 1.25rem; } +.progress-heading { display: flex; justify-content: space-between; gap: 1rem; } +progress { width: 100%; height: .8rem; accent-color: #d96932; } +.notice { margin: 1rem 0 0; border-radius: .6rem; padding: .75rem 1rem; background: #e5f3e9; color: #17633f; } +.error { margin: 1rem 0 0; border-radius: .6rem; padding: .75rem 1rem; background: #fbe8df; color: #8c3517; } +table { width: 100%; border-collapse: collapse; } +th, td { padding: .85rem .5rem; border-bottom: 1px solid #e5e9e5; text-align: left; } +th { color: #68746c; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; } +.sort-link { color: inherit; text-decoration: none; } +.sort-link:hover, .sort-link:focus-visible, th.active .sort-link { color: #d96932; } +.sort-indicator { display: inline-block; margin-left: .2rem; } +.numeric { text-align: right; white-space: nowrap; } +.empty { padding: 2.5rem 1rem; text-align: center; color: #68746c; } +.map-panel { padding: 0; overflow: hidden; } +.ride-map { min-height: 24rem; height: min(65vh, 40rem); } +.profile-panel { padding-bottom: 1rem; } +.profile-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; } +.profile-heading h2 { margin: 0; font-size: 1.2rem; } +.profile-heading p { margin: 0; color: #68746c; font-size: .9rem; } +.profile-chart { margin-top: 1rem; } +.profile-chart canvas { display: block; width: 100%; height: 22rem; border-radius: .65rem; background: #fbfcfa; outline: none; } +.profile-chart canvas:focus-visible { box-shadow: 0 0 0 .2rem #18794e66; } +.profile-hover { display: block; min-height: 1.4rem; margin: .7rem 0 0; color: #5b675f; font-size: .9rem; } +dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 0; } +dt { color: #68746c; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; } +dd { margin: .25rem 0 0; font-size: 1.2rem; font-weight: 700; } +@media (max-width: 700px) { .container { width: min(100% - 1rem, 70rem); padding-top: 1.5rem; } .site-header { padding-inline: 1rem; } th:nth-child(n+4), td:nth-child(n+4) { display: none; } .panel { padding: .8rem; } } +@media (max-width: 500px) { dl { grid-template-columns: repeat(2, 1fr); } } |