Created
November 30, 2022 14:29
-
-
Save gmcusaro/0d41ffbdfda84a80c05400c233d49f18 to your computer and use it in GitHub Desktop.
Full width content section
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<style> | |
body { | |
--mainBG: #000; | |
margin: 0; | |
padding: 0; | |
} | |
section { | |
padding: 1em; | |
} | |
section:first-of-type { | |
background-color: var(--mainBG); | |
color: #fff; | |
} | |
.container { | |
width: min(calc(80% - 2rem), 60rem); | |
margin-inline: auto; | |
} | |
.inverse { | |
background-color: var(--mainBG); | |
color: #fff; | |
} | |
.fully-inverse { | |
box-shadow: 0 0 0 100vmax var(--mainBG); | |
clip-path: inset(0 -100vmax); | |
} | |
</style> | |
</head> | |
<body> | |
<div class= "container"> | |
<section> | |
<h1>title</h1> | |
</section> | |
<section class="inverse fully-inverse"> | |
<h1>title</h1> | |
</section> | |
<section> | |
<h1>title</h1> | |
</section> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment