33 lines
694 B
SCSS
33 lines
694 B
SCSS
.content-wrapper {
|
|
flex-grow: 1;
|
|
width: 75%;
|
|
position: relative;
|
|
border-radius: $radius 0 0 $radius;
|
|
overflow: hidden;
|
|
z-index: 0;
|
|
|
|
.copyright {
|
|
padding: .5rem 1rem .5rem .5rem;
|
|
text-align: right;
|
|
font-size: .9rem;
|
|
color: rgba($article-text, .5);
|
|
}
|
|
}
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////// MEDIA QUERIES ////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
@include media(medium) {
|
|
.content-wrapper {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 801px) and (max-width: 1200px) {
|
|
.content-wrapper {
|
|
width: 70%;
|
|
}
|
|
}
|