Created
October 8, 2022 18:17
-
-
Save exitcas/6f242a212fa15b5e5d1428d7b4c3fe44 to your computer and use it in GitHub Desktop.
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
/* Page */ | |
html, body { | |
/*scrollbar-color: #fe53e1 var(--gray3);*/ | |
scrollbar-color: unset; | |
} | |
.page { | |
background: pink; | |
color: black; | |
font-family: monospace; | |
} | |
/* Header */ | |
.nounderline.header img { | |
display: none; | |
} | |
.nounderline.header div::before { | |
content: url("https://koyu.space/favicon.ico"); | |
} | |
header a div h1 { color: black; } | |
/* Body */ | |
h1, h2, h3, h4, h5, .displayname { | |
font-family: "Verdana", sans-serif; | |
} | |
p { font-size: large; } | |
.profile, .thread { color: white; } | |
.toot .displayname, footer a, .backnextlinks a { font-size: medium; } | |
/* Main */ | |
.profile .basic .avatar, .toot .avatar { | |
border-color: #fe53e1; | |
} | |
/* Posts */ | |
h2#recent { | |
display: none; | |
content: "Latest public posts"; | |
} | |
.button, .toot .media .no-image-desc { | |
background: #fe53e1; | |
} | |
.button:hover { | |
background: pink; | |
} | |
/* Footer */ | |
footer a, .backnextlinks a { | |
color: blue; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment