Created
April 3, 2013 22:40
-
-
Save pyrtsa/5306116 to your computer and use it in GitHub Desktop.
CSS for JSONView (the Google Chrome plugin)
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
body { | |
white-space: pre; | |
font-family: Menlo, monospace; | |
font-size: 13px; | |
} | |
.property { | |
/*font-weight: bold;*/ | |
color: #3ac; | |
} | |
.type-null, | |
.type-boolean, | |
.type-number, | |
.type-string | |
{ | |
} | |
.type-null { | |
color: #3333cc; | |
font-weight: bold; | |
} | |
.type-boolean { | |
color: #3333cc; | |
font-weight: bold; | |
} | |
.type-number { | |
color: #ff2222; | |
} | |
.type-string { | |
color: #c41a16; | |
} | |
.callback-function { | |
color: gray; | |
} | |
.collapser:after { | |
content: "▽"; | |
color: #eee; | |
} | |
.collapsed > .collapser:after { | |
content: "▶"; | |
color: #ccc; | |
} | |
.ellipsis:after { | |
content: " ... "; | |
} | |
.collapsible { | |
margin-left: 2em; | |
} | |
.hoverable { | |
padding: 1px 2px; | |
border-radius: 10px; | |
} | |
.hoverable:hover { | |
border: 1px solid #eee; | |
padding: 3px 6px; | |
margin: -3px -5px; | |
} | |
.hovered { | |
background-color: transparent; | |
} | |
.collapser { | |
padding-right: 10px; | |
padding-left: 6px; | |
} | |
* { outline: none !important; } | |
a:link, a:visited { color: #c41a16; text-decoration: none; } | |
a:focus, a:hover { color: #3333cc; text-decoration: underline; } | |
a:active { color: red; text-decoration: underline; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Installation in Google Chrome: