Last active
June 22, 2020 13:26
-
-
Save CADawg/b5dbe8c8436a32463e94fc0d4bee8084 to your computer and use it in GitHub Desktop.
Scrapbook CSS
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
| /* Fix code color in sidebar */ | |
| #ucss-code-wrapper * { | |
| color: black; | |
| } | |
| /* Please Ignore */ | |
| body | |
| { | |
| background: | |
| linear-gradient(27deg, #151515 5px, transparent 5px) 0 5px, | |
| linear-gradient(207deg, #151515 5px, transparent 5px) 10px 0px, | |
| linear-gradient(27deg, #222 5px, transparent 5px) 0px 10px, | |
| linear-gradient(207deg, #222 5px, transparent 5px) 10px 5px, | |
| linear-gradient(90deg, #1b1b1b 10px, transparent 10px), | |
| linear-gradient(#1d1d1d 25%, #1a1a1a 25%, #1a1a1a 50%, transparent 50%, transparent 75%, #242424 75%, #242424); | |
| background-color: #131313; | |
| background-size: 20px 20px; | |
| } | |
| .header-title-avatar { | |
| border-radius: 10px; | |
| } | |
| .header-title-name::before { | |
| content: "CADawg" !important; | |
| display: block; | |
| font-size: 48px; | |
| } | |
| .header-title-name { | |
| font-size: 0; | |
| } | |
| body { | |
| padding-bottom: 125px !important; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment