Files
supabase/apps/www/pages/launch-week/launchWeek.css
Jonathan Summers-Muir 1f1f8a5fa4 Feat/whale init (#28243)
* duplicate page

* whale init

* table background

* prepare

* sync undocumented remote schema from master

* revert remote schema sync

* add lw12 tickets migration file

* ticket init

* set up lw12 ticket layout

* finish ticket layout and customization form

* lw12 ticket og

* ticket styling

* code highlight border

* launch week migrations

* local dev progress

* keep local gh config

* comment section

* comment section

* comment out username.tsx

* remove lw/ticekts temp

* update copy

* fix migration view

* redirect to try

* use misc

* lw12 og

* share

* share correct

* env var

* username page

* update example env

* push new db schema

* trigger deploy

* update ticket og

* ticket themes

* bypass browser

* change env var name

* fix

* fix

* process env

* create client server side

* lw announcements

* promoToast

* animated bg

* update ticket og bg

* minor details

* secret ticket

* social share text

* social share textgst

* flow text

* update og

* update og handler

* Update index.ts

* use functions.invoke and use generic supabase URL

* Update index.ts

* Update handler.tsx

* Update package-lock.json

* Update handler.tsx

* add next api route

* moved to vercel edge function

* set revalidate

* Update route.tsx

* Delete lw-ticket-og.tsx

* Update route.tsx

* Update [username].tsx

* Update [username].tsx

* add more fetches

* Update turbo.json

* ticket themes updated

* copy and layout updated

* Update index.tsx

* Update Ticket.tsx

* Update TicketingFlow.tsx

* update countdown

* updated bg

* small updates

* moat

* Update [username].tsx

* Update 20240723155310_add_lw12_ticketing_schema.sql

* optimistic ticket stuff og generation

* Update index.tsx

* updated layout

* update themes in og

* Update constants.ts

* attr renamed

* Update TicketingFlow.tsx

* Update TicketActions.tsx

* grammar

* moar updates

* Update TicketActions.tsx

* Update TicketActions2.tsx

* Update TicketActions.tsx

* Update Hero.tsx

* Update TicketingFlow.tsx

* remove console logs

---------

Co-authored-by: Francesco Sansalvadore <[email protected]>
2024-08-01 01:59:01 +08:00

65 lines
1.2 KiB
CSS

.bg-lw7-black-transition {
background: linear-gradient(0.39deg, #161616 53.84%, rgba(28, 28, 28, 0) 88.21%);
}
.bg-lw7-gradient {
background: radial-gradient(80% 65% at 50% 95%, #dbb8bf 0%, transparent 100%);
}
@media (min-width: 768px) {
.bg-lw7-gradient {
background: radial-gradient(72.03% 66.03% at 50% 69.72%, #dbb8bf 0%, transparent 100%);
}
}
.opacity-pulse {
animation: opacity-pulse 0.6s ease-in-out infinite alternate both;
}
.opacity-pulse-full {
animation: opacity-pulse-full 0.6s ease-in-out infinite alternate both;
}
.glass-tile-gradient {
position: absolute;
left: calc(50% - 146.58px / 2 - 181.35px);
top: calc(50% - 426.82px / 2 - 76.38px);
background: #579ca1;
filter: blur(85.7962px);
border-radius: 16.9281px;
transform: matrix(0.84, 0.55, -0.55, 0.83, 0, 0);
}
.bounce-loop {
animation: bounce 1s ease-in-out infinite alternate both;
}
@keyframes bounce {
0% {
transform: translate3D(0, -5px, 0);
}
100% {
transform: translate3D(0, 5px, 0);
}
}
@keyframes opacity-pulse {
0% {
opacity: 0.4;
}
100% {
opacity: 1;
}
}
@keyframes opacity-pulse-full {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}