60 lines
768 B
CSS
60 lines
768 B
CSS
|
body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
background-color: #181818;
|
||
|
display: flex;
|
||
|
flex-direction: column-reverse;
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: sfpro;
|
||
|
src: url("../fonts/sfpro.otf") format("opentype");
|
||
|
}
|
||
|
|
||
|
div {
|
||
|
background-color: #282828;
|
||
|
font-family: sfpro;
|
||
|
margin: 15px;
|
||
|
margin-bottom: 0px;
|
||
|
border-radius: 5px;
|
||
|
padding: 10px;
|
||
|
width: calc(100% - 50px)
|
||
|
}
|
||
|
|
||
|
span {
|
||
|
display: inline-block;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
color: #ffffff;
|
||
|
font-family: sfpro;
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
|
||
|
.json span {
|
||
|
display: inline;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.key {
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.value {
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.boolean {
|
||
|
color: aqua;
|
||
|
}
|
||
|
|
||
|
.null {
|
||
|
color: blue;
|
||
|
}
|
||
|
|
||
|
.number {
|
||
|
color: yellow;
|
||
|
}
|
||
|
|
||
|
.string {
|
||
|
color: #4ae04a
|
||
|
}
|