A Pen by Una Kravets on CodePen.
Created
December 22, 2020 08:11
-
-
Save jupegarnica/84798ec5ead99f826304f4732ffdb814 to your computer and use it in GitHub Desktop.
10: Respect the Aspect
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
<div class="card"> | |
<h1>Title Here</h1> | |
<div class="visual"></div> | |
<p>Descriptive Text. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Sed est error repellat veritatis.</p> | |
</div> |
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
body { | |
display: grid; | |
place-items: center; | |
height: 100vh; | |
} | |
.visual { | |
aspect-ratio: 16/9; | |
background: wheat; | |
margin: 0.5rem 0; | |
} | |
.card { | |
width: 80%; | |
display: flex; | |
flex-direction: column; | |
background: lightpink; | |
padding: 1rem; | |
} | |
body { | |
font-family: system-ui, sans-serif; | |
} | |
h1 { | |
font-size: 1.5rem; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment