This commit is contained in:
Kristján Eldjárn 2022-07-22 10:43:34 -07:00
parent 72c2d2e121
commit 8def44a214
6 changed files with 17 additions and 63 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 734 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 551 KiB

View File

@ -15,13 +15,9 @@
}
&--section {
@include respond-to('mobile') {
background-image: url('/images/pre-footer-mobile.png');
background-position: 50%;
background-size: cover;
height: calc(var(--vw) * 95);
}
background-image: url('/images/laconic_newsletter_dark.png');
background-position: 50%;
background-size: cover;
display: flex;
position: relative;
align-items: center;
@ -33,42 +29,6 @@
@include respond-to('mobile') {
content: normal;
}
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: -1;
background: linear-gradient(
0deg,
var(--color-black) 15%,
rgb(9 9 121 / 0) 50%,
var(--color-black) 100%
),
linear-gradient(
90deg,
var(--color-black) 0%,
rgb(255 255 255 / 0) 10%,
rgb(255 255 255 / 0) 50%,
rgb(255 255 255 / 0) 90%,
var(--color-black) 100%
);
width: 100%;
height: 101%;
content: '';
pointer-events: none;
}
&::before {
background: radial-gradient(
ellipse farthest-corner at center center,
rgb(4 4 4 / 0) 45%,
var(--color-black) 0
);
width: 120%;
height: 115%;
filter: blur(tovw(80px, 'default', 40px));
will-change: filter, transform;
}
h2 {
@ -85,6 +45,17 @@
pointer-events: none;
user-select: none;
}
.img {
position: absolute;
top: 35px;
left: 0;
z-index: -1;
width: 100%;
height: auto;
pointer-events: none;
user-select: none;
}
}
.form {
@ -397,13 +368,8 @@
[data-theme='light'] {
.pre__footer {
&--section {
video {
mix-blend-mode: darken;
}
@include respond-to('mobile') {
background-image: url('/images/pre-footer-mobile-light.png');
}
background-image: url('/images/laconic_newsletter_lite.png');
mix-blend-mode: darken;
}
}

View File

@ -158,17 +158,6 @@ export const Footer = ({ data }: Props) => {
<>
{show && (
<Section className={s['pre__footer--section']}>
<video
autoPlay
className={clsx('hide-on-mobile', s['video'])}
controls={false}
muted
playsInline={true}
preload="true"
ref={videoRef}
>
<source type="video/mp4" />
</video>
<Container className={s['pre__footer']}>
<Isotype className={s['isotype']} />
<Heading

View File

@ -3,7 +3,6 @@
.base {
position: relative;
padding: 0 tovw(56px, 'default', 16px);
overflow: hidden;
}
.children {

View File

@ -144,7 +144,7 @@
position: absolute;
top: tovw(190px, 'default', 150px);
right: tovw(770px, 'default', 250px);
z-index: -1;
z-index: -10000;
width: tovw(825px, 'default', 250px);
mix-blend-mode: screen;
}