share: added background image
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Artem Anufrij
2023-02-18 00:16:08 +01:00
parent e61b1fac01
commit 813b1c09fc
7 changed files with 84 additions and 37 deletions

View File

@@ -1,5 +1,5 @@
{
"backend_dev": "http://localhost:31204",
"backend_de": "https://webplay.rocks",
"backend_de": "http://localhost:31204",
"backend_dev": "https://webplay.rocks",
"backend": "https://webplay.rocks"
}

View File

@@ -89,7 +89,9 @@ td.fillCell>* {
#artistViewer #background,
#albumViewer #background,
#boxViewer #background {
#boxViewer #background,
#albumContent #background,
#boxContent #background {
background-size: cover;
background-position: center;
top: -16px;
@@ -591,6 +593,10 @@ td.fillCell>* {
animation: glow 1s infinite alternate;
}
.z-1 {
z-index: -1;
}
.z1 {
z-index: 1;
}

View File

@@ -136,6 +136,10 @@ h6.slim {
font-weight: normal;
}
.relative {
position: relative;
}
input {
border-width: 1px;
border-style: solid;
@@ -511,6 +515,14 @@ label.yellow50 {
border-color: var(--yellow);
}
button.faded {
opacity: 0.25;
}
button.faded:hover {
opacity: 1;
}
button.medium {
padding: 8px;
}