From 7b054569a7f0777640848b19c2a6e56430b3fcea Mon Sep 17 00:00:00 2001 From: Nihaal Sharma Date: Mon, 22 May 2023 19:24:46 +0100 Subject: [PATCH] added script.js and web manifest for pwa also made div for top nav and added a css id for topbarTitle currnetly empty --- app.webmanifest | 16 ++++++++++++++++ index.html | 8 +++++--- script.js | 0 style.css | 5 ++++- 4 files changed, 25 insertions(+), 4 deletions(-) create mode 100644 app.webmanifest create mode 100644 script.js diff --git a/app.webmanifest b/app.webmanifest new file mode 100644 index 0000000..18ce1dd --- /dev/null +++ b/app.webmanifest @@ -0,0 +1,16 @@ +{ + "name": "neon443 Progressive Web App", + "short_name": "neon443", + "description": ".", + "icons": [ + { + "src": "./images/app-icon.png", + "sizes": "512×512", + "type": "image/png" + } + ], + "start_url": "https://neon443.github.io/", + "display": "fullscreen", + "theme_color": "#000", + "background_color": "#000" +} diff --git a/index.html b/index.html index 6c9d097..c1a5de4 100644 --- a/index.html +++ b/index.html @@ -9,7 +9,9 @@ -

neon443

+
+

neon443

+

@@ -17,8 +19,8 @@ ├─ Musics info
├─ EagleCraft
└─ Webpage Testing
-   ├─
-   └─
+   ├─ AnyShare
+   └─ Sidenav


Tips:

diff --git a/script.js b/script.js new file mode 100644 index 0000000..e69de29 diff --git a/style.css b/style.css index f010251..229b47f 100644 --- a/style.css +++ b/style.css @@ -8,7 +8,7 @@ b { a { color: #007AFF } -.topbar { +#topbar { position: fixed; top: 0px; backdrop-filter: blur(2.5px); @@ -16,6 +16,9 @@ a { box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.4); -webkit-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.4); width: 100%; +} +#topbarTitle { + } body { background-color: #f2f2f2;