Skip to content

Instantly share code, notes, and snippets.

@thatDaiwikKashyap
Created September 13, 2020 12:37
Show Gist options
  • Save thatDaiwikKashyap/f9deb5163469457eed7a405a7055ea00 to your computer and use it in GitHub Desktop.
Save thatDaiwikKashyap/f9deb5163469457eed7a405a7055ea00 to your computer and use it in GitHub Desktop.
CSS uploaded by scrapbook.hackclub.com/customizer
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;1,100;1,300&display=swap');
:root {
--colors-background: BLACK;
--colors-text: White;
--colors-muted: lightgreen;
--colors-elevated: coral;
}
.header-title-name {
text-transform: uppercase;
}
.post-header{
color: #ffffff
}
@keyframes rotate {
0% {
transform: rotate(360deg)
}
50%{
transform: rotate(0deg)
}
100% {
transform: rotate(360deg)
}
}
.header-title-avatar {
animation: rotate 5s infinite;
}
.post:hover {
transform: scale(1.01);
transition: all .3s ease-in-out;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment