From 093e251413ed587997b5380043ac30d3f48e1506 Mon Sep 17 00:00:00 2001 From: Brutus5000 Date: Sun, 22 Sep 2019 00:03:53 +0200 Subject: [PATCH] Move static files to correct non-war folder (fixes #340) --- .../META-INF/resources}/css/style.css | 54 +++++++++--------- .../META-INF/resources}/favicon.ico | Bin .../META-INF/resources}/robots.txt | 0 3 files changed, 27 insertions(+), 27 deletions(-) rename src/main/{webapp => resources/META-INF/resources}/css/style.css (68%) rename src/main/{webapp => resources/META-INF/resources}/favicon.ico (100%) rename src/main/{webapp => resources/META-INF/resources}/robots.txt (100%) diff --git a/src/main/webapp/css/style.css b/src/main/resources/META-INF/resources/css/style.css similarity index 68% rename from src/main/webapp/css/style.css rename to src/main/resources/META-INF/resources/css/style.css index 9ec015c72..dc914957a 100644 --- a/src/main/webapp/css/style.css +++ b/src/main/resources/META-INF/resources/css/style.css @@ -1,23 +1,23 @@ body, html { margin: 0; - background-color:rgba(0,0,0,0) !important; + background-color: rgba(0, 0, 0, 0) !important; } -.background{ - background-color:black; - z-index:-100; - position:fixed !important; - left:0 ; - right:0 ; - bottom:0 ; - top:0; - height:auto !important; - filter:blur(10px); +.background { + background-color: black; + z-index: -100; + position: fixed !important; + left: 0; + right: 0; + bottom: 0; + top: 0; + height: auto !important; + filter: blur(10px); } -a{ - color: #008cba !important; - text-decoration: none; +a { + color: #008cba !important; + text-decoration: none; } .card { @@ -90,26 +90,26 @@ ul { padding-start: 0; } -.mapTable{ - display: flex; - justify-content:flex-start; - flex-direction:column; +.mapTable { + display: flex; + justify-content: flex-start; + flex-direction: column; } -.mapTable div{ - display: flex; - justify-content:space-between; +.mapTable div { + display: flex; + justify-content: space-between; flex-direction: row; - flex-basis: 100%; + flex-basis: 100%; } -.mapTable div:last-child input{ - width:100%; - margin:20px; +.mapTable div:last-child input { + width: 100%; + margin: 20px; } -.mapTable div div:first-child{ - font-weight:bold; +.mapTable div div:first-child { + font-weight: bold; align-items: center; } diff --git a/src/main/webapp/favicon.ico b/src/main/resources/META-INF/resources/favicon.ico similarity index 100% rename from src/main/webapp/favicon.ico rename to src/main/resources/META-INF/resources/favicon.ico diff --git a/src/main/webapp/robots.txt b/src/main/resources/META-INF/resources/robots.txt similarity index 100% rename from src/main/webapp/robots.txt rename to src/main/resources/META-INF/resources/robots.txt