CSS uploaded by scrapbook.hackclub.com/customizer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url('https://fonts.googleapis.com/css2?family=Edu+VIC+WA+NT+Beginner&display=swap'); | |
:root{ | |
--colors-background: #d3eaf0; | |
--colors-text: #00577d; | |
--colors-elevated: #b2d3db; | |
--border-radius: 20px; | |
--fonts-body: 'Edu VIC WA NT Beginner' , system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI'; | |
} | |
.header-title-avatar { | |
animation: rotate 5s infinite; | |
} | |
.posts { | |
background-color: var(--colors-text); | |
border-radius: var(--border-radius); | |
width: auto; | |
outline-color: var(colors-text) !important; | |
box-shadow: 12px 12px 2px 1px var(--colors-text); | |
} | |
@keyframes rotate { | |
0% { | |
transform: scale(0.5) translate(-100%, -100%); | |
} | |
10% { | |
transform: rotate(180deg); | |
} | |
100% { | |
transform: rotate(360deg); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment