Last active
March 12, 2024 17:40
-
-
Save ChristopherHButler/45ac26684489f5fd8da4348228dd904d to your computer and use it in GitHub Desktop.
Square Eyes
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
<h1>New Movies</h1> | |
<section class="new-movies"> | |
<div class="flex-col"> | |
<div class="container"> | |
<a href="Products/product.html"> | |
<img src="images/thebatman.jpeg" alt="The Batman" class="img-fit"> | |
</a> | |
</div> | |
<div> | |
<h3 class="inline">The Batman•</h3> | |
<a href="#" class="inline link">Action</a> | |
</div> | |
</div> | |
<div class="flex-col"> | |
<div class="container"> | |
<a href="Products/product.html"> | |
<img src="images/godzilla.jpeg" alt="Godzilla-poster" class="img-fit"> | |
</a> | |
</div> | |
<div> | |
<h3 class="inline">Godzilla•</h3> | |
<a href="#" class="inline link">Sci-Fi</a> | |
</div> | |
</div> | |
<div class="flex-col"> | |
<div class="container"> | |
<a href="Products/product.html"> | |
<img src="images/hollywood.jpeg" alt="Once upon a Time" class="img-fit"> | |
</a> | |
</div> | |
<div> | |
<h3 class="inline">Once Upon a Time•</h3> | |
<a href="#" class="inline link">Thriller</a> | |
</div> | |
</div> | |
<div class="flex-col"> | |
<div class="container"> | |
<a href="Products/product.html"> | |
<img src="images/dunecover.jpg" alt="DunePart2" class="img-fit"> | |
</a> | |
</div> | |
<div> | |
<h3 class="inline">Dune Part 2•</h3> | |
<a href="#" class="inline link">Sci-Fi</a> | |
</div> | |
</div> | |
</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
main{ | |
margin-top: 5px; | |
margin-left: 16px; | |
margin-right: 16px; | |
} | |
.flex-col { | |
display: flex; | |
flex-direction: column; | |
max-height: 100%; | |
} | |
.inline { | |
display: inline; | |
} | |
.container { | |
height: 100%; | |
width: 100%; | |
object-fit: cover; | |
} | |
.img-fit { | |
height: 100%; | |
width: 80%; | |
object-fit: cover; | |
} | |
.link { | |
color: #0DC6C6; | |
} | |
/* BREAKPOINTS */ | |
@media (max-width: 992px) { | |
.header { | |
padding: 1.3rem 5%; | |
} | |
/* The new style */ | |
.new-movies { | |
flex-direction: column; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment