Last active
August 1, 2020 01:12
-
-
Save ChalkHuman/1b2bd1a6e5f2fc6bb541e1622116b6ba to your computer and use it in GitHub Desktop.
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
body { | |
background: linear-gradient(221deg, rgb(128, 37, 152) 0%, rgb(20, 150, 250) 100%); | |
background-size: 400% 400%; | |
animation: moveBackground 4s infinite; | |
} | |
.nav-link-home { | |
color: rgb(240, 233, 240); | |
} | |
h1 { | |
color: rgb(220, 250, 254); | |
} | |
.post { | |
background-color: rgba(240, 233, 240, 0.01); | |
border: rgb(67, 46, 71); | |
} | |
@keyframes moveBackground { | |
0% { | |
background-position: 0% 50%; | |
} | |
50% { | |
background-position: 100% 50%; | |
} | |
100% { | |
background-position: 0% 50%; | |
} | |
} | |
mention header-webring-mention:hover { | |
background: #b7c2fe | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment