docs-v2/assets/styles/layouts/_content-wrapper.scss

33 lines
694 B
SCSS
Raw Permalink Normal View History

.content-wrapper {
flex-grow: 1;
width: 75%;
position: relative;
border-radius: $radius 0 0 $radius;
2019-01-23 06:36:55 +00:00
overflow: hidden;
2020-08-18 21:08:50 +00:00
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%;
}
}