Last active
October 13, 2021 04:22
-
-
Save nathan815/5b83e8338d7318487f27ee6b1b7e8cff to your computer and use it in GitHub Desktop.
Custom CSS for Fider instance for The Swan Station
This file contains hidden or 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
:root { | |
--header-bg: #0f2413; | |
--header-foreground: #fff; /* #20bf20 */ | |
--primary-color: #118311; | |
--primary-color-dark: #107010; | |
--primary-color-light: #118311; | |
} | |
#c-header { | |
background: var(--header-bg); | |
} | |
#c-header .text-title, | |
#c-header .c-menu .container > div > a { | |
color: var(--header-foreground); | |
} | |
#c-header a:hover .text-title { | |
/*color: #0f0;*/ | |
} | |
#c-header .c-notification-indicator svg { | |
color: var(--header-foreground); | |
} | |
#c-header .c-avatar { | |
box-shadow: 0 0 2px #ddd; | |
} | |
#p-home .c-posts-container .c-markdown { | |
margin-bottom: 2px; | |
} | |
.text-link { | |
color: var(--primary-color); | |
} | |
.text-link:hover { | |
color: var(--primary-color-dark); | |
} | |
.p-home__welcome-col form { | |
margin-top: 20px !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment