<div class="container">
<h1>Pate Title</h1>
<p>Meaning that a low-fi sketch doesn’t represent all details of the design you’re working ons.Meaning that a low-fi sketch doesn’t represent all details of the design you’re working ons.</p>
<div class="overlay__full--bleed">
<h1>Pate Title</h1>
<p>Meaning that a low-fi sketch doesn’t represent all details of the design you’re working ons.Meaning that a low-fi sketch doesn’t represent all details of the design you’re working ons.</p>
</div>
<section class="full__bleed">
<img src="https://picsum.photos/2568/600?random=1" width="2568" height="600" alt="" />
</section>
<p>Meaning that a low-fi sketch doesn’t represent all details of the design you’re working on, whereas a high-fi sketch is a muc.Meaning that a low-fi sketch doesn’t represent all details of the design you’re working ons.</p>
</div>
@font-face {
font-family: "Redacted";
src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/62127/redacted-regular.woff2")
format("woff2");
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100vw;
min-height: 100vh;
font-family: Redacted, sans-serif;
background-color: #557;
color: #fff;
line-height: 1.5;
font-size: clamp(1rem, 1.2rem + 1vw, 1.25rem);
}
img {
max-width: 100%;
height: auto;
object-fit: cover;
object-position: center;
vertical-align: middle;
}
.container {
--limit-max-container-width: 65ch;
--limit-min-container-width: 23ch;
--gutter: 1rem;
display: grid;
grid-template-columns:
[full__bleed-start] minmax(var(--gutter), 1fr) [main-start]
minmax(
min(var(--limit-min-container-width), 100% - var(--gutter) * 2),
var(--limit-max-container-width)
)
[main-end]
minmax(var(--gutter), 1fr) [full__bleed-end];
row-gap: var(--gutter);
}
.container > * {
grid-column: main-start / main-end;
}
.container .full__bleed {
width: 100%;
grid-column: full__bleed-start / full__bleed-end;
grid-row: 3;
}
.overlay__full--bleed {
mix-blend-mode: overlay;
filter: hue-rotate(180deg);
text-shadow: 1px 1px 1px red, 2px 2px 1px red;
grid-row: 3;
z-index: 2;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.