Skip to content

Instantly share code, notes, and snippets.

@joaohcrangel
Created June 30, 2020 01:36
Show Gist options
  • Save joaohcrangel/4d010e54fcc8835e3eb0130213be648b to your computer and use it in GitHub Desktop.
Save joaohcrangel/4d010e54fcc8835e3eb0130213be648b to your computer and use it in GitHub Desktop.
<!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>
@uchoamaster
Copy link

Muito obrigado!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment