Performers component v1

This commit is contained in:
2022-06-14 19:48:15 +03:00
parent a4e224117c
commit 31553c0ed8
12 changed files with 317 additions and 50 deletions

View File

@@ -0,0 +1,50 @@
.performersContainer {
display: flex;
flex-direction: column;
width: 47rem;
max-width: 100%;
}
.performerCard {
display: flex;
flex-direction: column;
background-color: #d5caf29d;
margin: 2rem;
padding: 2rem;
}
.performerTitle {
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
h2 {
margin-left: 1rem;
}
h2:hover {
color: rgb(117, 117, 117);
transition: color 0.3s;
}
}
.performerImage {
margin-right: 15rem;
height: 100px;
border-radius: 100%;
}
.performerButton {
height: 3rem;
width: 3rem;
background-color: transparent;
border: transparent;
}
.performerButton:hover {
svg {
color: rgb(117, 117, 117);
transition: color 0.3s;
}
}