Skip to content

Instantly share code, notes, and snippets.

@volo1st
Created July 8, 2016 01:40
Show Gist options
  • Save volo1st/6befdee5d9c34dcd6a240cf045536a48 to your computer and use it in GitHub Desktop.
Save volo1st/6befdee5d9c34dcd6a240cf045536a48 to your computer and use it in GitHub Desktop.
seashell custom css for JSON View Chrome extension
body {
white-space: pre;
font-family: "Lucida Console", Monaco, monospace;
font-size: 14px;
color: #e4c3a1;
background: #081a23;
}
.property {
color: #d76539;
font-weight: bold;
}
.type-null {
color: #555e65;
}
.type-boolean {
color: #da998c;
}
.type-number {
color: #81ddf2;
}
.type-string {
color: #faad4d;
}
a {
color: #3ec8e1;
}
.callback-function {
color: gray;
}
.collapser:after {
content: "-";
}
.collapsed > .collapser:after {
content: "+";
}
.ellipsis:after {
content: "...";
}
.collapsible {
margin-left: 2em;
}
.hoverable {
padding: 1px 2px 1px 2px;
border-radius: 3px;
}
.hovered {
background-color: rgba(255, 255, 255, .2);
}
.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