Skip to content

Instantly share code, notes, and snippets.

@bhadresharya
Last active December 31, 2024 07:30
Show Gist options
  • Save bhadresharya/b484c29e0d7869a16029918a8fe5d848 to your computer and use it in GitHub Desktop.
Save bhadresharya/b484c29e0d7869a16029918a8fe5d848 to your computer and use it in GitHub Desktop.
Github Glow
<div class="glow"></div>
<img class="particles" src="https://github.githubassets.com/assets/particles-de1dd20f3008.png" alt="" aria-hidden="true" loading="lazy">
<a href="https://github.com/" class="source-link">Inspiration: Github Homepage</a>
body {
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
background: #0d1117;
overflow: hidden;
}
.glow {
position: absolute;
left: 35%;
width: 60%;
padding: 30% 0;
transform: translate(0, -70%) rotate(-45deg);
background: radial-gradient(
circle at left bottom,
#e6b7fe 20%,
#5049c2 40%,
rgba(58, 55, 255, 0) 50%
);
filter: blur(50px);
}
.particles {
position: absolute;
left: 40%;
width: 40%;
transform: translate(0, -40%);
}
.source-link {
position: fixed;
bottom: .25rem;
right: .25rem;
text-decoration: none;
font-family: monospace;
font-size: 12px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment