diff --git a/.gitignore b/.gitignore index 81069d4..450a494 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,6 @@ node_modules/ bin/ dist/ -resources/js/neutralino.js \ No newline at end of file +resources/js/neutralino.js + +neutralinojs.log \ No newline at end of file diff --git a/neutralino.config.json b/neutralino.config.json index 582631d..6916096 100644 --- a/neutralino.config.json +++ b/neutralino.config.json @@ -30,7 +30,7 @@ "fullScreen": false, "alwaysOnTop": false, "icon": "/resources/icons/appIcon.png", - "enableInspector": false, + "enableInspector": true, "borderless": false, "maximize": false, "hidden": false, diff --git a/package.json b/package.json index 3d4c85f..282a842 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "author": "SpikeHD ", "license": "Apache-2.0", "scripts": { - "dev": "", - "build": "" + "dev": "neu run", + "build": "neu build" } } diff --git a/resources/index.html b/resources/index.html index 75c33dd..d65c1d5 100644 --- a/resources/index.html +++ b/resources/index.html @@ -1,6 +1,16 @@ + - + + + + +
+
+ +
+
+ +
+
+ - -

Hello from Neutralino!

- \ No newline at end of file diff --git a/resources/style/index.css b/resources/style/index.css new file mode 100644 index 0000000..e4784d6 --- /dev/null +++ b/resources/style/index.css @@ -0,0 +1,33 @@ +body { + overflow: none; + height: 100vh; +} + +button { + padding: 0 30px; + border-radius: 5px; + border: none; + background: linear-gradient(#ffd326, #ffc61e); + color: #704a1d; + font-weight: bold; + height: 50px; + font-size: 20px; +} + +#halvesContainer { + width: 100%; + height: 100%; + position: relative; + overflow: hidden; + display: flex; +} + +#firstHalf, #secondHalf { + display: flex; + justify-content: center; + width: 100%; +} + +#firstHalf { + border-right: 1px solid black; +} \ No newline at end of file