diff --git a/abeer/enactus-logo-white.png b/abeer/enactus-logo-white.png new file mode 100644 index 0000000..652e2a2 Binary files /dev/null and b/abeer/enactus-logo-white.png differ diff --git a/abeer/index.html b/abeer/index.html new file mode 100644 index 0000000..54e2c8a --- /dev/null +++ b/abeer/index.html @@ -0,0 +1,40 @@ + + + + + + + + + + + + Document + + + +
+ + +
+ + + + + + + + + + + \ No newline at end of file diff --git a/abeer/index.js b/abeer/index.js new file mode 100644 index 0000000..fd89489 --- /dev/null +++ b/abeer/index.js @@ -0,0 +1,11 @@ +const express = require("express"); +const router = express.Router(); +const path = require("path"); + +router.use(express.static(path.join(__dirname))); + +router.get("/", (req, res) => { + res.sendFile(path.join(__dirname + "/index.html")); +}); + +module.exports = router; diff --git a/abeer/script.js b/abeer/script.js new file mode 100644 index 0000000..e69de29 diff --git a/abeer/style.css b/abeer/style.css new file mode 100644 index 0000000..1bbfbde --- /dev/null +++ b/abeer/style.css @@ -0,0 +1,66 @@ +body { + margin: 0; + background-color: #cecece; + min-height: 200vh; + font-family: "Segoe UI", Roboto, "Open Sans", "Helvetica Neue", sans-serif; +} + +.header { + height: 88px; + display: flex; + width: 100%; + background: black; + justify-content: space-between; +} +.enactus-logo { + height: 100%; + max-width: 120px; + object-fit: contain; + margin-left: 30px; +} + +.enactus-logo > img { + max-width: 100%; + transform: scale(1.3); +} + +li { + list-style: none; +} + +.header-links { + display: flex; + justify-content: space-around; + justify-items: center; + align-items: center; + text-align: center; + color: rgb(230, 216, 216); + font-weight: 400; + font-size: 1.04rem; + transition: transform 1s; + margin: auto 1.3rem; +} + +ul { + display: flex; + justify-content: space-around; + justify-items: center; + align-items: center; + text-align: center; +} + +ul > li { + margin: auto 0.6rem; +} +.header-links > ul > li:hover { + --color: #f3d581; + border-bottom: 0.05rem solid var(--color); + transform: scale(1.12); + color: var(--color); + cursor: pointer; +} + +a { + text-decoration: none; + color: inherit; +} diff --git a/app.js b/app.js index f98e41a..ed1b2c1 100644 --- a/app.js +++ b/app.js @@ -16,6 +16,10 @@ app.set("view engine", "html"); const astitva = require("./Astitva/"); //astitva page app.use("/project-astitva", astitva); +//abeer +const abeer = require("./abeer/"); + +app.use("/project-abeer", abeer); //home page const homePage = require("./Home");