implement torrent posters feature #18

This commit is contained in:
ghost 2023-10-30 04:44:44 +02:00
parent 8ae1b3f0b7
commit bd5191e894
16 changed files with 944 additions and 43 deletions

View file

@ -197,29 +197,36 @@ a.button-green:hover {
}
.border-color-default {
border: 1px #5d627d solid;
border: 1px rgba(93, 98, 125, .6) solid;
}
.border-bottom-default {
border-bottom: 1px #5d627d solid;
border-bottom: 1px rgba(93, 98, 125, .6) solid;
}
.border-top-default {
border-top: 1px #5d627d solid;
border-top: 1px rgba(93, 98, 125, .6) solid;
}
.border-bottom-dashed {
border-bottom: 1px #5d627d dashed;
border-bottom: 1px rgba(93, 98, 125, .6) dashed;
}
.border-top-dashed {
border-top: 1px #5d627d dashed;
border-top: 1px rgba(93, 98, 125, .6) dashed;
}
.border-width-2-px {
border-width: 2px;
}
.background-poster {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-blend-mode: soft-light;
}
.background-color-night {
background-color: #34384f;
}
@ -503,6 +510,10 @@ a:visited.background-color-hover-night-light:hover {
/* responsive rules */
.height-148-px {
height: 148px;
}
.width-100 {
width: 100%;
}