Skip to content

Instantly share code, notes, and snippets.

@shifatul-i
Last active January 7, 2020 23:43
Show Gist options
  • Save shifatul-i/c9683da17afdee379ef8d6cbd5594b12 to your computer and use it in GitHub Desktop.
Save shifatul-i/c9683da17afdee379ef8d6cbd5594b12 to your computer and use it in GitHub Desktop.
body {
background-color: powderblue;
margin: 0;
}
h1 {
color: red;
}
h2 {
color: blue;
}
h4 {
color: brown;
}
p {
color: green;
}
img {
width: 210px;
height: 160px;
display: block;
margin: 24px auto 16px auto;
border: 1px solid darkgray;
transition: transform 0.4s ease-in-out;
}
img:hover {
cursor: pointer;
transform: scale(1.5);
}
#name {
background-color: rgb(225, 181, 175);
padding: 8px;
margin: 0;
}
.details {
background-color: rgb(203, 220, 56);
padding: 8px;
margin: 16px 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment