Last active
January 7, 2020 23:43
-
-
Save shifatul-i/c9683da17afdee379ef8d6cbd5594b12 to your computer and use it in GitHub Desktop.
This file contains 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
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