Created
October 1, 2024 16:47
-
-
Save rochacbruno/29b826f29681bf56a4b8b3f303f725d1 to your computer and use it in GitHub Desktop.
GoToSocial custom Solirized Light CSS for Brutalist Light Theme
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
:root { | |
--almost-white: #fdf6e3; | |
--almost-black: #586e75; | |
--link-fg: #2aa198; | |
--fg: #586e75; | |
--status-info-bg: #eee8d5; | |
--status-focus-info-bg: #eee8d5; | |
--single-border: 0.2rem solid #cb4b16; | |
--boxshadow-border: none; | |
--double-border: none; | |
} | |
html, body { | |
font-family: 'Noto Sans Mono', monospace; | |
} | |
.page { | |
background-color: #eee8d5; | |
} | |
.profile { | |
background: transparent; | |
} | |
.profile-header { | |
background: #fdf6e3; | |
background-color: #fdf6e3; | |
} | |
.avatar-image-wrapper { | |
/*border: none !important;*/ | |
} | |
.page-header a img, .page-header a picture { | |
align-self: center; | |
max-height: 2rem; | |
max-width: 8rem; | |
} | |
.page-header { | |
padding: .1rem; | |
} | |
.status .status-header > address > a .author-strap .username { | |
font-weight: bolder; | |
} | |
.status-info { | |
background-color: #eee8d5; | |
} | |
.profile .profile-header .basic-info .namerole .role.admin { | |
border: 0.13rem solid #cb4b16; | |
} | |
.page-footer { | |
background-color: #fdf6e3; | |
margin-top: 2rem; | |
border-top: 0.1rem solid #586e75; | |
} | |
.backnextlinks { | |
padding: 0.5rem; | |
background-color: #fdf6e3; | |
border: var(--boxshadow-border); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment