xssbook/public/css/console.css

62 lines
828 B
CSS
Raw Normal View History

2023-01-26 22:29:16 +00:00
body {
margin: 0;
padding: 0;
background-color: #181818;
}
@font-face {
font-family: sfpro;
src: url("../fonts/sfpro.otf") format("opentype");
}
.msg {
2023-01-26 22:29:16 +00:00
background-color: #282828;
font-family: sfpro;
margin: 15px;
margin-bottom: 0px;
border-radius: 5px;
padding: 10px;
width: calc(100% - 50px)
}
.msg span {
2023-01-26 22:29:16 +00:00
display: inline-block;
padding: 0;
margin: 0;
color: #ffffff;
font-family: sfpro;
margin-right: 10px;
}
.body span {
margin-right: 0;
}
2023-01-26 22:29:16 +00:00
.json span {
display: inline;
margin: 0;
}
.value {
2023-01-30 20:19:16 +00:00
color: white !important;
2023-01-26 22:29:16 +00:00
}
.bool {
2023-01-30 20:19:16 +00:00
color: aqua !important;
2023-01-26 22:29:16 +00:00
}
.null {
2023-01-30 20:19:16 +00:00
color: blue !important;
2023-01-26 22:29:16 +00:00
}
.number {
2023-01-30 20:19:16 +00:00
color: yellow !important;
2023-01-26 22:29:16 +00:00
}
.string {
2023-01-30 20:19:16 +00:00
color: #4ae04a !important;
}
.key .string {
2023-01-30 20:19:16 +00:00
color: white !important;
2023-01-26 22:29:16 +00:00
}