Compare commits
2 Commits
feature/sp
...
chore/resi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
19e9e59125 | ||
| bfbbaeae59 |
BIN
frontend/public/images/race-half.jpg
Normal file
|
After Width: | Height: | Size: 87 KiB |
|
Before Width: | Height: | Size: 2.5 MiB |
BIN
frontend/public/images/race-marathon.jpg
Normal file
|
After Width: | Height: | Size: 65 KiB |
|
Before Width: | Height: | Size: 2.1 MiB |
BIN
frontend/public/images/race-night.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 2.2 MiB |
BIN
frontend/public/images/race-short.jpg
Normal file
|
After Width: | Height: | Size: 96 KiB |
|
Before Width: | Height: | Size: 2.5 MiB |
BIN
frontend/public/images/race-trail.jpg
Normal file
|
After Width: | Height: | Size: 176 KiB |
|
Before Width: | Height: | Size: 3.7 MiB |
BIN
frontend/public/images/runner-hero.jpg
Normal file
|
After Width: | Height: | Size: 135 KiB |
|
Before Width: | Height: | Size: 2.1 MiB |
@@ -21,36 +21,36 @@ interface OfficialRaceVisual {
|
||||
const FALLBACK_VISUALS: Record<RaceVisualVariant, RaceVisual> = {
|
||||
short: {
|
||||
variant: "short",
|
||||
imageSrc: "/images/race-short.png",
|
||||
fallbackSrc: "/images/race-short.png",
|
||||
imageSrc: "/images/race-short.jpg",
|
||||
fallbackSrc: "/images/race-short.jpg",
|
||||
imageFit: "cover",
|
||||
label: "Городской темп",
|
||||
},
|
||||
half: {
|
||||
variant: "half",
|
||||
imageSrc: "/images/race-half.png",
|
||||
fallbackSrc: "/images/race-half.png",
|
||||
imageSrc: "/images/race-half.jpg",
|
||||
fallbackSrc: "/images/race-half.jpg",
|
||||
imageFit: "cover",
|
||||
label: "Полумарафон",
|
||||
},
|
||||
marathon: {
|
||||
variant: "marathon",
|
||||
imageSrc: "/images/race-marathon.png",
|
||||
fallbackSrc: "/images/race-marathon.png",
|
||||
imageSrc: "/images/race-marathon.jpg",
|
||||
fallbackSrc: "/images/race-marathon.jpg",
|
||||
imageFit: "cover",
|
||||
label: "Марафон",
|
||||
},
|
||||
trail: {
|
||||
variant: "trail",
|
||||
imageSrc: "/images/race-trail.png",
|
||||
fallbackSrc: "/images/race-trail.png",
|
||||
imageSrc: "/images/race-trail.jpg",
|
||||
fallbackSrc: "/images/race-trail.jpg",
|
||||
imageFit: "cover",
|
||||
label: "Трейл",
|
||||
},
|
||||
night: {
|
||||
variant: "night",
|
||||
imageSrc: "/images/race-night.png",
|
||||
fallbackSrc: "/images/race-night.png",
|
||||
imageSrc: "/images/race-night.jpg",
|
||||
fallbackSrc: "/images/race-night.jpg",
|
||||
imageFit: "cover",
|
||||
label: "Ночной старт",
|
||||
},
|
||||
|
||||
@@ -1290,7 +1290,7 @@ body {
|
||||
color: #ffffff;
|
||||
background:
|
||||
linear-gradient(90deg, rgba(7, 25, 39, 0.9) 0%, rgba(7, 25, 39, 0.58) 46%, rgba(7, 25, 39, 0.1) 100%),
|
||||
url("/images/runner-hero.png") center / cover;
|
||||
url("/images/runner-hero.jpg") center / cover;
|
||||
}
|
||||
|
||||
.dashboard-hero__content,
|
||||
@@ -1525,7 +1525,7 @@ body {
|
||||
padding: var(--space-8);
|
||||
background:
|
||||
linear-gradient(90deg, rgba(7, 25, 39, 0.88), rgba(7, 25, 39, 0.48), rgba(7, 25, 39, 0.08)),
|
||||
url("/images/race-half.png") center / cover;
|
||||
url("/images/race-half.jpg") center / cover;
|
||||
}
|
||||
|
||||
.races-hero .page__title,
|
||||
@@ -1788,7 +1788,7 @@ body {
|
||||
padding: var(--space-8);
|
||||
background:
|
||||
linear-gradient(90deg, rgba(7, 25, 39, 0.9), rgba(7, 25, 39, 0.5), rgba(7, 25, 39, 0.08)),
|
||||
url("/images/race-short.png") center / cover;
|
||||
url("/images/race-short.jpg") center / cover;
|
||||
}
|
||||
|
||||
.race-day-hero .page-link {
|
||||
|
||||