Performers index and detailed info page.

This commit is contained in:
codevictory
2021-06-02 00:43:32 +03:00
parent 526beedbe9
commit c8bf8efced
8 changed files with 57 additions and 39 deletions

View File

@@ -0,0 +1,41 @@
.performer-img {
max-width: 57%;
}
@media screen and (max-width: 600px) {
.performer-img {
max-width: 100%;
}
}
.performers-container {
display: flex;
flex-wrap: wrap;
width: 80%;
justify-content: space-between;
align-items: baseline;
.performer-name {
width: 30%;
font-size: x-large;
border-right: solid 1px;
border-left: solid 1px;
margin-bottom: 4%;
border-radius: 3px;
}
}
@media screen and (max-width: 600px) {
.performers-container {
.performer-name {
width: 100%;
margin-bottom: 10%;
text-align: left;
padding-left: 5%;
}
.performer-name::before {
content: '>> ';
}
}
}