forked from UKSOURCE/ipv6
feat: memberships page
This commit is contained in:
+21
-6
@@ -43,7 +43,12 @@ body {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: "Nasalization", system-ui, sans-serif;
|
||||
}
|
||||
|
||||
@@ -107,16 +112,26 @@ textarea::placeholder {
|
||||
|
||||
/* Partners Carousel animations */
|
||||
@keyframes scroll-fwd {
|
||||
0% { transform: translateX(0); }
|
||||
100% { transform: translateX(calc(-1 * var(--set-width) - 20px)); }
|
||||
0% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateX(calc(-1 * var(--set-width) - 20px));
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scroll-reverse {
|
||||
0% { transform: translateX(calc(-1 * var(--set-width) - 20px)); }
|
||||
100% { transform: translateX(0); }
|
||||
0% {
|
||||
transform: translateX(calc(-1 * var(--set-width) - 20px));
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.animate-scroll:hover,
|
||||
.animate-scroll-reverse:hover {
|
||||
animation-play-state: paused;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user