Last active
July 11, 2020 14:41
-
-
Save aljaxus/066d15e88adfcc52fb839433432e318d 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(110deg,#111,#111,#1e1d1d,#1e2422,#181c1a,#09130f,#111); | |
background-attachment: fixed !important; | |
} | |
.header-links > .header-link { | |
color: #27846a; | |
} | |
.header-links > .header-link:hover, | |
.header-links > .header-link:focus { | |
color: #19b589; | |
} | |
.posts { | |
background-color: transparent !important; | |
grid-gap: 1rem; | |
border-radius: unset; | |
} | |
.posts > .post { | |
border-radius: 8px; | |
display: grid; | |
grid-template-rows: 2rem 1fr auto auto; | |
} | |
.posts > .post .post-attachments { | |
justify-items: bottom; | |
} | |
.posts > .post .post-attachments img { | |
border: 1px solid white; | |
} | |
.posts > .post .post-reaction { | |
transition: all .125s ease-in-out; | |
} | |
.posts > .post .post-reaction:focus, .post-reaction:hover { | |
background-color: #304f4f; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment