diff --git a/index.html b/index.html index 4369e78..d84f039 100644 --- a/index.html +++ b/index.html @@ -12,10 +12,23 @@
NCOS Companion

Latest Version: V0.0.0

-

Installed: V0.0.0

- +
+
+

Installed: V0.0.0

+ +
+
+

Downloading...

+
100%
+
+
+
+ \ No newline at end of file diff --git a/index.js b/index.js index 50fb8d3..1dc90b0 100644 --- a/index.js +++ b/index.js @@ -9,6 +9,7 @@ const createWindow = () => { height: 300, backgroundColor: '#2f3241', symbolColor: '#74b1be', + resizable: false, titleBarStyle: 'hidden', titleBarOverlay: true, titleBarOverlay: { diff --git a/style.css b/style.css index 2d7aa55..f636d18 100644 --- a/style.css +++ b/style.css @@ -8,6 +8,11 @@ button { -webkit-app-region: no-drag; } +h4 { + padding: 0; + margin: 0; + margin-bottom: 10px; +} .content { padding-left: 20.5%; padding-right: 20.5%; @@ -26,6 +31,36 @@ button { background-color: #74b1be; color: white; border-radius: 5px; - font-size: 20px; padding: 5px; + width: 90%; + font-size: 15px; + height: 33px; +} + +.row { + width: 100%; + display: flex; +} + +.col-6 { + width: 50%; +} + +#myProgress { + width: 100%; + border-radius: 5px; + border: 1px solid #74b1be; +} + +#myBar { + width: 100%; + height: 33px; + border-radius: 5px; + background-color: #74b1be; +} + +#progress-label { + position: absolute; + color: white; + padding: 1.5%; } \ No newline at end of file