Added rudimentary tags page. Improved social match behavior.

This commit is contained in:
2019-12-01 05:32:47 +01:00
parent bead69de49
commit cf81aa99e0
41 changed files with 495 additions and 104 deletions

View File

@@ -923,21 +923,64 @@
}
/* $primary: #ff886c; */
.header[data-v-80991bcc] {
display: flex;
justify-content: space-between;
padding: 1rem;
.poster[data-v-7f130e7f] {
width: 30rem;
height: 18rem;
-o-object-fit: cover;
object-fit: cover;
}
.title[data-v-80991bcc] {
.title[data-v-7f130e7f] {
display: inline-block;
padding: 1rem;
margin: 0 .5rem 0 0;
text-transform: capitalize;
}
.title .icon[data-v-80991bcc] {
.title .icon[data-v-7f130e7f] {
width: 1.25rem;
height: 1.25rem;
}
/* $primary: #ff886c; */
.tile[data-v-602c6fd8] {
background: #fff;
display: flex;
flex-direction: column;
align-items: center;
box-sizing: border-box;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
text-align: center;
text-decoration: none;
}
.poster[data-v-602c6fd8] {
width: 100%;
height: 14rem;
-o-object-fit: cover;
object-fit: cover;
}
.title[data-v-602c6fd8] {
color: #222;
display: flex;
align-items: center;
justify-content: center;
font-size: 1rem;
font-weight: bold;
padding: .5rem 1rem;
}
.title[data-v-602c6fd8] {
color: #222;
height: 100%;
display: flex;
align-items: center;
margin: 0;
}
.tags[data-v-66fa6284] {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
grid-gap: .5rem;
padding: 1rem;
}
/* $primary: #ff886c; */
.errorpage[data-v-29109daf] {
background: #fff;
@@ -1103,15 +1146,31 @@ body {
display: inline-block;
}
.nav-link[data-v-10b7ec04] {
display: inline-block;
color: rgba(0, 0, 0, 0.5);
display: inline-flex;
align-items: center;
padding: 1rem;
border-bottom: solid 5px transparent;
color: rgba(0, 0, 0, 0.5);
text-decoration: none;
font-size: 1rem;
font-size: .9rem;
font-weight: bold;
}
.nav-link[data-v-10b7ec04]:hover {
.nav-link .icon[data-v-10b7ec04] {
fill: rgba(0, 0, 0, 0.5);
margin: 0 .5rem 0 0;
}
.nav-link.active[data-v-10b7ec04] {
color: #ff6c88;
border-bottom: solid 5px #ff6c88;
}
.nav-link.active .icon[data-v-10b7ec04] {
fill: #ff6c88;
}
.nav-link[data-v-10b7ec04]:hover:not(.active) {
color: #ff6c88;
}
.nav-link:hover:not(.active) .icon[data-v-10b7ec04] {
fill: #ff6c88;
}
/* $primary: #ff886c; */