Merge branch 'svelte' of https://github.com/afnzmn/revanced-website into svelte

This commit is contained in:
afnzmn 2022-07-26 14:20:09 -04:00
commit 3824eb91bd
7 changed files with 8 additions and 6 deletions

View File

@ -27,7 +27,8 @@
padding: 12px 40px;
cursor: pointer;
background-color: transparent;
transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
margin-top: 45px;
transition: transform 0.4s var(--bezier-one), box-shadow 0.4s var(--bezier-one);
user-select: none;
}

View File

@ -31,7 +31,7 @@
cursor: pointer;
background-color: var(--grey-four);
font-size: 1.5rem;
transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
transition: transform 0.4s var(--bezier-one);
user-select: none;
}

View File

@ -31,7 +31,7 @@
padding: 12px 40px;
cursor: pointer;
background-color: transparent;
transition: background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
transition: background-color 0.4s var(--bezier-one), box-shadow 0.4s var(--bezier-one);
user-select: none;
}

View File

@ -22,7 +22,8 @@
margin-right: 0.25rem;
font-weight: 300;
align-items: center;
transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
border: var(--grey-six);
transition-timing-function: var(--bezier-one);
transition-duration: 0.25s;
}

View File

@ -21,7 +21,7 @@
cursor: pointer;
background-color: var(--grey-four);
font-size: 1.5rem;
transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
transition: transform 0.4s var(--bezier-one), filter 0.4s var(--bezier-one);
user-select: none;
margin-right:0.5rem;
margin-left: 0.5rem;

View File

@ -30,7 +30,6 @@
gap:1rem;
user-select: none;
transform: translateX(-3px);
margin-top: 3rem;
}
.hero-text h1 {

View File

@ -68,6 +68,7 @@ import Wave from '$lib/components/atoms/Wave.svelte';
--grey-five: #D0D0D0;
--grey-six: #a19e9e;
--grey-seven: #535563;
--bezier-one: cubic-bezier(0.25, 0.46, 0.45, 0.94)
}
:global(::selection) {