-
-
Save brigand/d14a3acb7cedac3781c3403c5ca87748 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
:root { | |
--fg: #d5ced9; | |
--bg: #23262e; | |
--red: #ee5d43; | |
--purple: #c74ded; | |
--yellow: #ffe66d; | |
--font: Arial, sans; | |
} | |
html { | |
background: var(--bg); | |
} | |
html::before { | |
content: "Unknown session"; | |
display: block; | |
font-size: 2em; | |
margin: 1rem; | |
color: var(--red); | |
font-family: var(--font); | |
} | |
body::before { | |
content: "Code: inject_session_not_found\00000A\00000APlease try reloading the page"; | |
display: block; | |
white-space: pre-wrap; | |
margin: 1rem; | |
color: var(--yellow); | |
font-family: var(--font); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment