71 lines
No EOL
1.4 KiB
SCSS
71 lines
No EOL
1.4 KiB
SCSS
|
|
// Modal Window
|
|
.portfolio-modal .close-modal {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 5rem;
|
|
height: 5rem;
|
|
background-color: transparent;
|
|
cursor: pointer;
|
|
font-size: 3rem;
|
|
@include breakpoint(mobile-only) {
|
|
display: none;
|
|
}
|
|
}
|
|
.modal {
|
|
@extend .default-animation;
|
|
display: none;
|
|
opacity: 0;
|
|
overflow: hidden;
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 1050;
|
|
-webkit-overflow-scrolling: touch;
|
|
outline: 0;
|
|
background: $white;
|
|
text-align: center;
|
|
@include breakpoint(mobile-only) {
|
|
h1 {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
p, ul {
|
|
margin: 1rem 0;
|
|
}
|
|
ul {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
&.in {
|
|
opacity: 1;
|
|
}
|
|
.client-details {
|
|
list-style-type: none;
|
|
li {
|
|
display: inline-block;
|
|
strong {
|
|
color: $core-accent;
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
}
|
|
.modal-content {
|
|
margin: 0 auto;
|
|
width: 35rem;
|
|
min-height: 100%;
|
|
margin-top: 10rem;
|
|
@include breakpoint(tablet-range) {
|
|
width: 100%;
|
|
}
|
|
@include breakpoint(mobile-only) {
|
|
margin-top: 0;
|
|
width: 100%;
|
|
}
|
|
img {
|
|
max-height: 15rem;
|
|
}
|
|
}
|
|
} |