notherbase-fs 1.1.23 → 1.1.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/controllers/authCheck.js +1 -1
- package/controllers/explorer.js +4 -3
- package/controllers/user.js +1 -1
- package/package.json +1 -1
- package/public/styles/void.css +0 -37
package/controllers/authCheck.js
CHANGED
package/controllers/explorer.js
CHANGED
|
@@ -103,10 +103,11 @@ let complete = function complete(explorerBuild) {
|
|
|
103
103
|
|
|
104
104
|
//the void
|
|
105
105
|
router.use(function(req, res, next){
|
|
106
|
-
res.render(
|
|
106
|
+
res.render(`explorer`,
|
|
107
107
|
{
|
|
108
|
-
siteTitle: "NotherBase",
|
|
109
|
-
|
|
108
|
+
siteTitle: "NotherBase | The Void",
|
|
109
|
+
styles: [`${dir}/${explorerBuild.void}/styles/void.css`],
|
|
110
|
+
main: `${dir}/${explorerBuild.void}/index`
|
|
110
111
|
});
|
|
111
112
|
});
|
|
112
113
|
|
package/controllers/user.js
CHANGED
|
@@ -3,7 +3,7 @@ const router = express.Router();
|
|
|
3
3
|
const bcrypt = require("bcrypt");
|
|
4
4
|
|
|
5
5
|
// Import my Data
|
|
6
|
-
const User = require("../models/user")
|
|
6
|
+
const User = require("../models/user");
|
|
7
7
|
const inventory = require("../models/inventory");
|
|
8
8
|
|
|
9
9
|
const authCheck = require("./authCheck");
|
package/package.json
CHANGED
package/public/styles/void.css
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--shadow: rgb(71, 71, 71);
|
|
3
|
-
--textColor: rgb(49, 49, 49);
|
|
4
|
-
--woodColor: rgb(170, 117, 68);
|
|
5
|
-
--metalColor: rgb(104, 101, 100);
|
|
6
|
-
--brickColor: rgb(139, 67, 38);
|
|
7
|
-
--gravelColor: rgb(160, 158, 154);
|
|
8
|
-
--grassColor: rgb(50, 93, 61);
|
|
9
|
-
--voidColor: rgb(41, 0, 41);
|
|
10
|
-
--darkVoidColor: rgb(24, 0, 24);
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
* {
|
|
14
|
-
box-sizing: border-box;
|
|
15
|
-
font-family: 'Chela One', cursive;
|
|
16
|
-
color: var(--voidColor);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
body {
|
|
20
|
-
background-color: var(--voidColor);
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
main {
|
|
24
|
-
background-color: var(--darkVoidColor);
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
h1 {
|
|
28
|
-
width: 100%;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
a {
|
|
32
|
-
background-color: var(--darkVoidColor);
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
a:hover {
|
|
36
|
-
border: 1px solid var(--voidColor);
|
|
37
|
-
}
|