Skip to content

Instantly share code, notes, and snippets.

@lgrachov
Last active January 7, 2023 15:42
Show Gist options
  • Save lgrachov/ead95107487001953137ca9b2c2d76ef to your computer and use it in GitHub Desktop.
Save lgrachov/ead95107487001953137ca9b2c2d76ef to your computer and use it in GitHub Desktop.
CardView
<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>
.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