Created
June 30, 2020 01:36
-
-
Save joaohcrangel/4d010e54fcc8835e3eb0130213be648b 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Hcode CSS 3</title> | |
<style> | |
.linear { | |
display: flex; | |
background-color: #000000; | |
margin: 0; | |
flex-direction: row; | |
justify-content: center; | |
align-items: center; | |
height: 100vh; | |
background: linear-gradient(-45deg, #f0932b, #eb4d4b, #4834d4, #be2edd); | |
background-size: 400% 400%; | |
animation: hcode 15s ease infinite; | |
} | |
@keyframes hcode { | |
0% { | |
background-position: 0% 0%; | |
} | |
50% { | |
background-position: 100% 50%; | |
} | |
100% { | |
background-position: 0% 50%; | |
} | |
} | |
</style> | |
</head> | |
<body class="linear"> | |
<img src="hcode-white.png" alt="Hcode Logo Branco" /> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh, nice
Thanks