Skip to content

Commit

Permalink
Merge pull request #15 from snowcamp/a11y-color
Browse files Browse the repository at this point in the history
a11y - colors contrast
  • Loading branch information
barmic authored Jun 14, 2024
2 parents 962fa29 + 78f1c7f commit ad3761a
Show file tree
Hide file tree
Showing 19 changed files with 337 additions and 304 deletions.
60 changes: 60 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"astro": "^3.3.4",
"astro-bootstrap": "^0.6.1",
"astro-i18n-aut": "^0.4.25",
"astro-remote": "^0.3.3",
"bootstrap": "~5.3.2",
"font-awesome": "~4.7.0",
"jquery": "~3.7.1",
Expand Down
9 changes: 9 additions & 0 deletions public/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.text-big-italic {
font-size: 2.6rem;
line-height: 3.9rem;
font-family: Lora, serif;
font-weight: 400;
opacity: 0.7;
font-style: italic;
text-align: center;
}
2 changes: 2 additions & 0 deletions src/components/SponsorFormula.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ interface Props {
const { sponsor, cssClass } = Astro.props;
---
<div class="snc-ticket">
<div class={'single ' + cssClass} >
<div class="single-top">
<h2 class="title">{sponsor.title}</h2>
Expand Down Expand Up @@ -39,3 +40,4 @@ const { sponsor, cssClass } = Astro.props;
</ul>
</div>
</div>
</div>
2 changes: 1 addition & 1 deletion src/components/StoreStatus.astro
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if ((early_birds_status === "closed" || early_birds_status === "deactivated") &&
storeStatus = t('store_not_open');
}
---
<p class="text dark-background emph">{storeStatus}</p>
<span class="emph">{storeStatus}</span>
{store.url && (early_birds_status === "open" || classic_status === "open") ?
<p>
<a href={store.url} target="_blank">
Expand Down
Loading

0 comments on commit ad3761a

Please sign in to comment.