From e360e3543f292460d950c35dc4c5a74d3e7fe14c Mon Sep 17 00:00:00 2001 From: Swarnabha Date: Sat, 5 Oct 2024 17:26:08 +0530 Subject: [PATCH 1/2] style shhet added separately --- www/index.html | 6 ++---- www/style.css | 3 +++ 2 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 www/style.css diff --git a/www/index.html b/www/index.html index bf91d51..27bd753 100644 --- a/www/index.html +++ b/www/index.html @@ -3,11 +3,9 @@ Hello Neutralinojs - + - + It works 🚀 diff --git a/www/style.css b/www/style.css new file mode 100644 index 0000000..745fedd --- /dev/null +++ b/www/style.css @@ -0,0 +1,3 @@ +.body { + background-color: white; +} \ No newline at end of file From 45f836738587e70ee932a9aaf57c5457a0e390a0 Mon Sep 17 00:00:00 2001 From: Swarnabha Date: Sat, 5 Oct 2024 17:55:31 +0530 Subject: [PATCH 2/2] stylesheet is added separately --- .vscode/launch.json | 15 +++++++++++++++ www/index.html | 3 ++- www/style.css | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..2ba986f --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "chrome", + "request": "launch", + "name": "Launch Chrome against localhost", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + } + ] +} \ No newline at end of file diff --git a/www/index.html b/www/index.html index 27bd753..e6bd8c0 100644 --- a/www/index.html +++ b/www/index.html @@ -3,10 +3,11 @@ Hello Neutralinojs - + It works 🚀 + diff --git a/www/style.css b/www/style.css index 745fedd..4fe1d10 100644 --- a/www/style.css +++ b/www/style.css @@ -1,3 +1,3 @@ -.body { +body { background-color: white; } \ No newline at end of file