Last active
February 25, 2019 14:40
-
-
Save Nedson202/5c7d7858966e6ac52d65a55f87d6bcc4 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
.app { | |
text-align: center; | |
} | |
.app p { | |
font-size: 30px; | |
font-family: Georgia, 'Times New Roman', Times, serif; | |
} | |
.app .page-title { | |
font-size: 30px; | |
font-weight: bold; | |
} | |
.hide { | |
display: none; | |
} | |
#error-symbol { | |
font-size: 50px; | |
border: 1px solid; | |
border-radius: 50%; | |
height: 55px; | |
width: 55px; | |
margin: auto; | |
} | |
.internet-error { | |
height: 60px; | |
background: #ff8100; | |
margin-top: 0; | |
font-size: 20px; | |
} | |
.internet-error p { | |
font-size: 25px; | |
line-height: 60px; | |
color: #fff; | |
margin: 0; | |
} | |
.image-list { | |
display: grid; | |
grid-gap: 40px; | |
grid-template-columns: repeat(4, 1fr); | |
width: 1150px; | |
margin: 100px auto; | |
} | |
.image:hover { | |
animation: animate-image 0.5s; | |
animation-iteration-count: infinite; | |
} | |
@keyframes animate-image { | |
0% { transform: translate(1px, 1px) rotate(0deg); } | |
10% { transform: translate(-1px, -2px) rotate(-1deg); } | |
20% { transform: translate(-1px, -2px) rotate(0deg); } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment