2022-03-03 17:03:18 +01:00
|
|
|
.ma-collection-details {
|
2022-08-30 15:17:14 +02:00
|
|
|
h1 {
|
|
|
|
i {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&.icon-trash {
|
|
|
|
color: $danger-color;
|
|
|
|
@include transition() {}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $danger-color-hl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.icon-refresh {
|
|
|
|
color: $primary-color;
|
|
|
|
@include transition() {}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $primary-color-hl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-03 17:03:18 +01:00
|
|
|
.galerie {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
div {
|
|
|
|
width: 80px;
|
|
|
|
height: 80px;
|
|
|
|
margin: 0.25rem;
|
|
|
|
padding: 0.25rem;
|
|
|
|
border: 2px solid var(--font-color);
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: 90%;
|
2022-03-07 07:56:00 +01:00
|
|
|
max-height: 90%;
|
2022-03-03 17:03:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal {
|
|
|
|
button.close {
|
|
|
|
height: 36px;
|
|
|
|
max-height: 36px;
|
|
|
|
max-width: 36px;
|
|
|
|
min-height: 36px;
|
|
|
|
min-width: 36px;
|
|
|
|
width: 36px;
|
|
|
|
position: absolute;
|
|
|
|
background-color: rgba(10,10,10,.6);
|
|
|
|
right: 12px;
|
|
|
|
top: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
cursor: pointer;
|
|
|
|
z-index: 10;
|
|
|
|
|
|
|
|
&.previous {
|
|
|
|
left: 12px;
|
|
|
|
}
|
|
|
|
&.next {
|
|
|
|
right: 12px;
|
|
|
|
}
|
|
|
|
i {
|
|
|
|
font-size: 2rem;
|
|
|
|
color: $nord4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|