diff --git a/.gitignore b/.gitignore index 53eaf4c..57b2dd3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules/ -./example.js \ No newline at end of file +./example.js +./userconfig.json \ No newline at end of file diff --git a/userconfig.js b/userconfig.js index 15a5b61..f2d4069 100644 --- a/userconfig.js +++ b/userconfig.js @@ -4,12 +4,12 @@ const webServerName = "Noobish's Server" // web server name (will be displayed i const xdrdServerHost = '192.168.1.15'; // xdrd server IP (if it's running on the same machine, use 127.0.0.1) const xdrdServerPort = 7373; // xdrd server port -const xdrdPassword = 'changeme'; // xdrd password (optional) +const xdrdPassword = 'password'; // xdrd password (optional) const qthLatitude = ''; // your latitude, useful for maps.fmdx.pl integration const qthLongitude = ''; // your longitude, useful for maps.fmdx.pl integration -const verboseMode = true; // if true, console will display extra messages +const verboseMode = false; // if true, console will display extra messages // DO NOT MODIFY ANYTHING BELOW THIS LINE module.exports = { diff --git a/web/css/breadcrumbs.css b/web/css/breadcrumbs.css index f18de39..cc69410 100644 --- a/web/css/breadcrumbs.css +++ b/web/css/breadcrumbs.css @@ -11,6 +11,10 @@ h3 { font-family: monospace; } +.form-group { + display: inline-block; +} + #color-settings, #settings { background: transparent; border: 0; diff --git a/web/css/helpers.css b/web/css/helpers.css index 8884eb6..aea7047 100644 --- a/web/css/helpers.css +++ b/web/css/helpers.css @@ -68,13 +68,7 @@ text-transform: uppercase; } -@media only screen and (max-width: 768px) { - .flex-container { - display: block; - } - .flex-phone { - display: flex; - } +@media only screen and (max-width: 960px) { .text-medium-big { font-size: 32px; } @@ -86,4 +80,13 @@ .text-big#data-ps { margin: 0; } +} + +@media only screen and (max-width: 768px) { + .flex-container { + display: block; + } + .flex-phone { + display: flex; + } } \ No newline at end of file diff --git a/web/css/main.css b/web/css/main.css index 6dc6808..66120ae 100644 --- a/web/css/main.css +++ b/web/css/main.css @@ -19,6 +19,26 @@ color: inherit; } +/* width */ +::-webkit-scrollbar { + width: 6px; +} + +/* Track */ +::-webkit-scrollbar-track { + background: var(--color-1); +} + +/* Handle */ +::-webkit-scrollbar-thumb { + background: var(--color-2); +} + +/* Handle on hover */ +::-webkit-scrollbar-thumb:hover { + background: var(--color-3); +} + body { font-family: 'Titillium Web', sans-serif; color: white; @@ -35,7 +55,6 @@ body { max-width: 1240px; } - @media (max-width: 960px) { #wrapper { position: static; diff --git a/web/css/panels.css b/web/css/panels.css index e493ad2..8cf4642 100644 --- a/web/css/panels.css +++ b/web/css/panels.css @@ -1,16 +1,4 @@ -.panel-10 { - width: 10%; - background: var(--color-1); - margin-left: 10px; - margin-right: 10px; - border-radius: 30px; - text-align: center; - margin-top: 30px; - margin-bottom: 30px; -} - -.panel-33 { - width: 33%; +*[class^="panel-"] { background-color: var(--color-1); margin-left: 10px; margin-right: 10px; @@ -20,37 +8,26 @@ transition: 0.3s ease-in-out background-color; } +.panel-10 { + width: 10%; + margin-bottom: 30px; +} + +.panel-33 { + width: 33%; +} + .panel-75 { width: 68%; - background: var(--color-1); - margin-left: 10px; - margin-right: 10px; - border-radius: 30px; - text-align: center; - margin-top: 30px; - transition: 0.3s ease-in-out background-color; } .panel-90 { width: 88%; - background: var(--color-1); - margin-left: 10px; - margin-right: 10px; - border-radius: 30px; - text-align: center; - margin-top: 30px; } .panel-100 { width: 98%; - background: var(--color-1); - margin-left: 10px; - margin-right: 10px; - min-height: 100px; - border-radius: 30px; - text-align: center; - margin-top: 30px; } @@ -62,7 +39,6 @@ margin-bottom: 20px; } .panel-75 { - margin: 80px auto 0 auto !important; width: 90%; } .panel-33 h2 { @@ -72,6 +48,5 @@ .panel-100 { width: 90%; margin: auto; - } - + } } \ No newline at end of file diff --git a/web/index.html b/web/index.html index 9c1e616..0a9cba3 100644 --- a/web/index.html +++ b/web/index.html @@ -118,16 +118,27 @@ Settings - - +