fix console page
This commit is contained in:
parent
0c021ef938
commit
6ba51230c0
2 changed files with 9 additions and 9 deletions
|
@ -38,25 +38,25 @@ body {
|
|||
}
|
||||
|
||||
.value {
|
||||
color: white;
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
.bool {
|
||||
color: aqua;
|
||||
color: aqua !important;
|
||||
}
|
||||
|
||||
.null {
|
||||
color: blue;
|
||||
color: blue !important;
|
||||
}
|
||||
|
||||
.number {
|
||||
color: yellow;
|
||||
color: yellow !important;
|
||||
}
|
||||
|
||||
.string {
|
||||
color: #4ae04a
|
||||
color: #4ae04a !important;
|
||||
}
|
||||
|
||||
.key .string {
|
||||
color: white;
|
||||
color: white !important;
|
||||
}
|
|
@ -240,9 +240,9 @@ pub async fn generate() -> Response {
|
|||
<meta charset="UTF-8">
|
||||
<meta http-equiv="refresh" content="5">
|
||||
<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/console.css">
|
||||
<title>XSSBook - Console</title>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -250,7 +250,7 @@ pub async fn generate() -> Response {
|
|||
<span class="logo"><a href="/">xssbook</a></span>
|
||||
<span class="gtext desc" style="margin-left: 6em; font-size: 2em">Console</span>
|
||||
</div>
|
||||
<div style="margin-botton: 4.25em"></div>
|
||||
<div style="margin-bottom: 3.5em"></div>
|
||||
"#
|
||||
.to_string();
|
||||
|
||||
|
|
Loading…
Reference in a new issue