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",
"short_name": "Currency Converter",
"start_url": "/",
"start_url": "/currency",
"background_color": "#55335C",
"theme_color": "#9E79C0",
"icons": [
+6 -2
View File
@@ -6,23 +6,27 @@ html {
}
body {
background-image: url("bg.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
height: 100%;
margin: 0;
padding: 0;
border: 1px solid transparent;
}
.panel {
height: 60%;
min-height: 192px;
margin-left: 15%;
margin-right: 15%;
margin-top: 15%;
margin-top: 20%;
font-size: 15px;
text-align: center;
text-decoration: none;
outline: none;
color: #000000;
background-color: #9e79c0;
border: none;
border-radius: 15px;
box-shadow: 0 9px 9px 9px #55335c;
}