Compare commits

...

3 Commits

Author SHA1 Message Date
xaloc 1c50d3bbe7 change bg to cover and add more top margin to panel 2023-07-07 15:23:09 +02:00
xaloc dbf21f570b fix style extra height 2023-07-07 15:03:54 +02:00
xaloc 1edb455c41 fix start url 2023-07-07 14:51:27 +02:00
2 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "Currency Converter", "name": "Currency Converter",
"short_name": "Currency Converter", "short_name": "Currency Converter",
"start_url": "/", "start_url": "/currency",
"background_color": "#55335C", "background_color": "#55335C",
"theme_color": "#9E79C0", "theme_color": "#9E79C0",
"icons": [ "icons": [
+6 -2
View File
@@ -6,23 +6,27 @@ html {
} }
body { body {
background-image: url("bg.jpg"); background-image: url("bg.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
height: 100%; height: 100%;
margin: 0; margin: 0;
padding: 0; padding: 0;
border: 1px solid transparent;
} }
.panel { .panel {
height: 60%; height: 60%;
min-height: 192px;
margin-left: 15%; margin-left: 15%;
margin-right: 15%; margin-right: 15%;
margin-top: 15%; margin-top: 20%;
font-size: 15px; font-size: 15px;
text-align: center; text-align: center;
text-decoration: none; text-decoration: none;
outline: none; outline: none;
color: #000000; color: #000000;
background-color: #9e79c0; background-color: #9e79c0;
border: none;
border-radius: 15px; border-radius: 15px;
box-shadow: 0 9px 9px 9px #55335c; box-shadow: 0 9px 9px 9px #55335c;
} }