Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/LanguagePicker.astro
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const getPathForLang = (targetLang: string) => {
{
variant === 'desktop' ? (
<div
class="lang-picker flex items-center gap-1 border-l border-pycon-gray-100/30 pl-6 ml-2 text-pycon-yellow text-lg font-outfit"
class="lang-picker flex items-center gap-1 border-l border-pycon-gray-100/30 pl-6 ml-2 text-pycon-yellow text-base font-outfit"
role="group"
aria-label={t['alttext']}
>
Expand All @@ -47,9 +47,9 @@ const getPathForLang = (targetLang: string) => {
lang={lang}
aria-current={lang === currentLang ? 'page' : undefined}
class:list={[
'px-2 py-1 text-sm font-outfit rounded transition-colors outline-none',
'px-2 py-1 text-base font-outfit rounded transition-colors outline-none',
lang === currentLang
? 'text-pycon-red font-bold underline'
? 'text-pycon-red-50 font-bold underline'
: 'text-pycon-yellow-75 hover:text-pycon-yellow focus-visible:text-pycon-orange',
]}
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Navigation.astro
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ const { items } = menuTexts[currentLang]

/* Active menu item styling */
.is-active {
color: var(--color-pycon-red);
color: var(--color-pycon-red-50);
font-weight: 600;
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/home/SectionMain.astro
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const t = texts[lang as keyof typeof texts]

<h2
id="subtitle-container"
class="mt-4 md:text-2xl text-pycon-red-75 font-mono h-8 flex justify-center items-start gap-2 [text-shadow:0_0_3px_var(--color-pycon-black),0_0_6px_var(--color-pycon-black),0_0_6px_var(--color-pycon-black),0_0_12px_var(--color-pycon-black)]"
class="mt-4 md:text-2xl text-pycon-red-50 font-mono h-8 flex justify-center items-start gap-2 [text-shadow:0_0_3px_var(--color-pycon-black),0_0_6px_var(--color-pycon-black),0_0_6px_var(--color-pycon-black),0_0_12px_var(--color-pycon-black)]"
aria-live="polite"
aria-busy="true"
>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/[lang]/sponsors.astro
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ const {
'p-4 text-center border-b border-white/10 text-sm',
{
'text-pycon-yellow': val === '✅',
'text-pycon-red': val === '🚫',
'text-pycon-red-50': val === '🚫',
},
]}
>
Expand Down
26 changes: 13 additions & 13 deletions src/style/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ html {
/* Fonts */
--font-outfit: 'Outfit Variable', sans-serif;

--font-size-xs: 0.875rem;
--font-size-sm: 1rem;
--font-size-base: 1.125rem;
--font-size-lg: 1.25rem;
--font-size-xl: 1.5rem;
--font-size-2xl: 1.875rem;
--font-size-3xl: 2.25rem;
--font-size-4xl: 2.625rem;
--font-size-5xl: 3rem;
--font-size-6xl: 3.375rem;
--font-size-7xl: 3.75rem;
--font-size-8xl: 4.5rem;
--font-size-9xl: 6rem;
--font-size-xs: 1rem;
--font-size-sm: 1.125rem;
--font-size-base: 1.25rem;
--font-size-lg: 1.5rem;
--font-size-xl: 1.875rem;
--font-size-2xl: 2.25rem;
--font-size-3xl: 2.625rem;
--font-size-4xl: 3rem;
--font-size-5xl: 3.375rem;
--font-size-6xl: 3.75rem;
--font-size-7xl: 4.5rem;
--font-size-8xl: 6rem;
--font-size-9xl: 8rem;

/* Font Weights */
--font-weight-thin: 100;
Expand Down
Loading