A Pen by Leo Grachov on CodePen.
Last active
January 7, 2023 15:42
-
-
Save lgrachov/ead95107487001953137ca9b2c2d76ef to your computer and use it in GitHub Desktop.
CardView
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><img src="user.png"> Card</h1> | |
<p>Lorem ispum.</p> | |
<img src="thumbnail.png"> | |
<div> | |
<p style="width: 0px; height: 0px; color: white">Watermark</p> |
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
.card { | |
background-color: gray; | |
width: 200px; | |
transform:scale(1); | |
transition: transform 1s; | |
margin: 10px | |
} | |
.card:hover{transform:scale(1.1)} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment