fix console page

This commit is contained in:
Tyler Murphy 2023-01-30 15:19:16 -05:00
parent 0c021ef938
commit 6ba51230c0
2 changed files with 9 additions and 9 deletions

View file

@ -38,25 +38,25 @@ body {
} }
.value { .value {
color: white; color: white !important;
} }
.bool { .bool {
color: aqua; color: aqua !important;
} }
.null { .null {
color: blue; color: blue !important;
} }
.number { .number {
color: yellow; color: yellow !important;
} }
.string { .string {
color: #4ae04a color: #4ae04a !important;
} }
.key .string { .key .string {
color: white; color: white !important;
} }

View file

@ -240,9 +240,9 @@ pub async fn generate() -> Response {
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta http-equiv="refresh" content="5"> <meta http-equiv="refresh" content="5">
<link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="css/console.css"> <link rel="stylesheet" href="/css/header.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="/css/admin.css"> <link rel="stylesheet" href="/css/admin.css">
<link rel="stylesheet" href="/css/console.css">
<title>XSSBook - Console</title> <title>XSSBook - Console</title>
</head> </head>
<body> <body>
@ -250,7 +250,7 @@ pub async fn generate() -> Response {
<span class="logo"><a href="/">xssbook</a></span> <span class="logo"><a href="/">xssbook</a></span>
<span class="gtext desc" style="margin-left: 6em; font-size: 2em">Console</span> <span class="gtext desc" style="margin-left: 6em; font-size: 2em">Console</span>
</div> </div>
<div style="margin-botton: 4.25em"></div> <div style="margin-bottom: 3.5em"></div>
"# "#
.to_string(); .to_string();