89 lines
No EOL
1.9 KiB
SCSS
89 lines
No EOL
1.9 KiB
SCSS
.ma-collection-details {
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.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%;
|
|
max-height: 90%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.modal {
|
|
button.close {
|
|
height: 42px;
|
|
max-height: 42px;
|
|
max-width: 42px;
|
|
min-height: 42px;
|
|
min-width: 42px;
|
|
width: 42px;
|
|
position: absolute;
|
|
background-color: var(--close-background);
|
|
right: 12px;
|
|
top: 12px;
|
|
|
|
&::before,
|
|
&::after {
|
|
background-color: $white;
|
|
}
|
|
}
|
|
|
|
.carousel {
|
|
display: grid;
|
|
grid-template-columns: auto 80vw auto;
|
|
z-index: 1;
|
|
text-align: center;
|
|
|
|
img {
|
|
max-width: 100%;
|
|
max-height: 80vh;
|
|
}
|
|
}
|
|
|
|
.navigation {
|
|
cursor: pointer;
|
|
i {
|
|
font-size: 1rem;
|
|
color: $nord4;
|
|
|
|
@include respond-to("small-up") {
|
|
font-size: 2rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |