Skip to content

Instantly share code, notes, and snippets.

@XTechnology-TR
Created April 14, 2022 13:59
Show Gist options
  • Save XTechnology-TR/85abbc791ea5d6ef2f2467a749182d77 to your computer and use it in GitHub Desktop.
Save XTechnology-TR/85abbc791ea5d6ef2f2467a749182d77 to your computer and use it in GitHub Desktop.
Overlapping sections only CSS
<section class="section">
<h2 class="title">Winter</h2>
</section>
<section class="section">
<h2 class="title">Spring</h2>
</section>
<section class="section">
<h2 class="title">Summer</h2>
</section>
<section class="section">
<h2 class="title">Autumn</h2>
</section>
@import url('https://fonts.googleapis.com/css?family=Permanent+Marker&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Permanent Marker', cursive;
}
.section {
align-items: center;
background: url('https://images.unsplash.com/photo-1485123263479-f5ea30a2f92d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1334&q=80') no-repeat center / cover;
bottom: 0;
display: flex;
justify-content: center;
height: 100vh;
padding: 1rem;
position: sticky;
width: 100%;
z-index: -1;
}
.section:nth-child(2) {
background-image: url('https://images.unsplash.com/photo-1571413666114-1e5d1f2bad15?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1652&q=80');
z-index: -2;
}
.section:nth-child(3) {
background-image: url('https://images.unsplash.com/photo-1552224647-b3a8f931b3b8?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80');
z-index: -3;
}
.section:last-child {
background-image: url('https://images.unsplash.com/photo-1523712999610-f77fbcfc3843?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80');
z-index: -4;
}
.title {
color: #FFF;
font-size: 5rem;
text-stroke: 0.1px #000;
-webkit-text-stroke: 1px #000;
}
@supports not (-webkit-text-stroke: 1px #000) {
.title {
text-shadow:
3px 3px 0 #000,
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment