Skip to content

Instantly share code, notes, and snippets.

@Captain-AJ
Created February 16, 2023 09:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Captain-AJ/4b55211845f456eae37919bd3ff29e1f to your computer and use it in GitHub Desktop.
Save Captain-AJ/4b55211845f456eae37919bd3ff29e1f to your computer and use it in GitHub Desktop.
CSS uploaded by scrapbook.hackclub.com/customizer
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@1,600&display=swap');
:root {
--colors-background: #01ed01;
--colors-text: #0f59ed;
--colors-elevated: #fcf309;
--colors-muted: #0f59ed;
--fonts-body: 'Kanit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI';
}
@keyframes blue-yellow {
14% {
color: blue;
}
70% {
color: yellow;
}
}
.header-title-name {
animation: blue-yellow 5s infinite;
}
@keyframes rotate {
50% {
transform: rotate(180deg);
}
100% {
transform: rotate(0deg);
}
}
.header-title-avatar {
animation: rotate 5s infinite;
}
.post :hover {
transform: scale(1.02);
}
.post :hover {
transition: all 0.2s ease-in-out;
}
.header-links :hover {
color: yellow;
}
.post {
border-radius: 18px;
opacity: 1 !important;
margin: 2%;
width: auto;
}
.posts {
background-color: blue;
}
.post {
box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #dfdfdf, inset -2px -2px grey, inset 2px 2px #fff;
background: #fcf309 !important;
}
.nav-link {
color: white !important;
}
.post-attachments {
box-shadow: 0px 0px 30px 0px #01ed01;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment