Skip to content

Instantly share code, notes, and snippets.

@CodeMyUI
Last active May 9, 2020 23:21
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save CodeMyUI/eb32c8ef3b91ee8db5f35e961a10d6a1 to your computer and use it in GitHub Desktop.
CSS : Background Clip
<div class="wrapper"><h1>sxrdev team</h1></div>
$avatar-size: 32px;
$body-background: #333641;
@font-face {
font-family: "ubuntu";
font-style: italic;
font-weight: 300;
src: local("Lato Light Italic"), local("Lato-LightItalic"),
url(https://fonts.gstatic.com/s/ubuntucondensed/v8/u-4k0rCzjgs5J7oXnJcM_0kACGMtT-Dfqw.woff2)
format("woff2");
}
body {
height: 100vh;
margin: 0;
background-color: $body-background;
font-family: "ubuntu", Arial, sans-serif;
overflow-x: hidden;
display: grid;
place-items: center;
}
a {
text-decoration: none;
color: #9ca0b1;
}
.wrapper {
text-align: center;
h1 {
color: #fff;
font-size: 92px;
font-family: "ubuntu";
text-transform: uppercase;
font-weight: 700;
font-family: "Josefin Sans", sans-serif;
background: linear-gradient(to right, #e72a3a 10%, #fff 50%, #5bdaff 60%);
background-size: auto auto;
background-clip: border-box;
background-size: 200% auto;
color: #fff;
background-clip: text;
text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: textclip 1.5s linear infinite;
display: inline-block;
}
}
@keyframes textclip {
to {
background-position: 200% center;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment