Created
July 21, 2015 21:03
-
-
Save elqahtani/428ef97d3dcf0043ac6c 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 { | |
font-family: sans-serif; | |
} | |
a, a:hover, a:link { | |
color: #0000EE; | |
font-style: none; | |
} | |
.prop { | |
font-weight: bold; | |
} | |
.null { | |
color: red; | |
} | |
.bool { | |
color: blue; | |
} | |
.num { | |
color: blue; | |
} | |
.string { | |
color: green; | |
white-space: pre-wrap; | |
} | |
.collapser { | |
position: absolute; | |
left: -1em; | |
cursor: pointer; | |
-moz-user-select: none; | |
} | |
.q { | |
display: inline-block; | |
width: 0px; | |
color: transparent; | |
} | |
li { | |
position: relative; | |
} | |
#error { | |
-moz-border-radius: 8px; | |
border: 1px solid #970000; | |
background-color: #F7E8E8; | |
margin: .5em; | |
padding: .5em; | |
} | |
.errormessage { | |
font-family: monospace; | |
} | |
#json { | |
font-family: monospace; | |
font-size: 1.1em; | |
/*white-space: pre-wrap;*/ | |
} | |
ul { | |
list-style: none; | |
margin: 0 0 0 2em; | |
padding: 0; | |
} | |
h1 { | |
font-size: 1.2em; | |
} | |
/* Indent JSON when there's a callback. */ | |
.callback + #json { | |
padding-left: 1em; | |
} | |
.callback { | |
font-family: monospace; | |
color: #A52A2A; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment