Created
October 26, 2017 15:11
-
-
Save tosipaulo/37e111ff2318acc93b05d0f36490e377 to your computer and use it in GitHub Desktop.
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 { | |
width: 290px; | |
overflow: hidden; | |
border-radius: 5px; | |
border: 1px solid #d4d4d5; | |
} | |
.card img { | |
display: block; | |
} | |
.card div { | |
background: #fff; | |
padding: 15px; | |
} | |
.card div h1 { | |
line-height: 3; | |
font-size: 25px; | |
} | |
.card div p { | |
color: #888 | |
} |
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
<article class="card"> | |
<img src="http://fakeimg.pl/300x250/009EEB/FFF/?text=Imagem.jpg" alt="" /> | |
<div> | |
<h1>Title</h1> | |
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p> | |
</div> | |
</article> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment