diff options
-rw-r--r-- | public/css/console.css | 12 | ||||
-rw-r--r-- | src/console.rs | 6 |
2 files changed, 9 insertions, 9 deletions
diff --git a/public/css/console.css b/public/css/console.css index 15f4df4..1823b6e 100644 --- a/public/css/console.css +++ b/public/css/console.css @@ -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; }
\ No newline at end of file diff --git a/src/console.rs b/src/console.rs index 008109c..c78b3e7 100644 --- a/src/console.rs +++ b/src/console.rs @@ -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(); |