Last active
June 26, 2018 13:20
-
-
Save akalongman/2c19ce819508fe9acbbb3f029d51efc9 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
body { | |
white-space: pre; | |
font-family: monospace; | |
background: black; | |
color: #cccccc; | |
} | |
.property { | |
font-weight: bold; | |
color: #F060F0; | |
} | |
.type-null { | |
color: #0090F0; | |
} | |
.type-boolean { | |
color: #0090F0; | |
} | |
.type-number { | |
color: #00C0F0; | |
} | |
.type-string { | |
color: #F060F0; | |
} | |
.callback-function { | |
color: gray; | |
} | |
.collapser:after { | |
content: "-"; | |
} | |
.collapsed > .collapser:after { | |
content: "+"; | |
} | |
.ellipsis:after { | |
content: " … "; | |
} | |
.collapsible { | |
margin-left: 2em; | |
} | |
.hoverable { | |
padding-top: 1px; | |
padding-bottom: 1px; | |
padding-left: 2px; | |
padding-right: 2px; | |
border-radius: 2px; | |
} | |
.hovered { | |
background-color: rgba(50, 50, 50, 1); | |
} | |
.collapser { | |
padding-right: 6px; | |
padding-left: 6px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment