LoveIt/assets/css/_core/_media.scss

62 lines
804 B
SCSS
Raw Normal View History

@media only screen and (max-width: 1440px) {
.page {
2020-03-16 03:59:51 +01:00
max-width: 56%;
}
}
@media only screen and (max-width: 1200px) {
.page {
2020-03-16 03:59:51 +01:00
max-width: 52%;
2019-08-11 19:36:19 +02:00
}
}
@media only screen and (max-width: 960px) {
#toc-auto {
display: none;
}
2019-08-21 18:32:52 +02:00
#toc-static {
display: block;
}
.page {
max-width: 80%;
2019-08-21 18:32:52 +02:00
}
}
@media only screen and (max-width: 680px) {
#header-desktop {
2019-08-24 13:32:41 +02:00
display: none;
}
2019-08-19 21:01:15 +02:00
#header-mobile {
2019-08-24 13:32:41 +02:00
display: block;
2019-08-19 21:01:15 +02:00
}
body.blur {
overflow: hidden;
}
.page {
2019-08-24 13:32:41 +02:00
max-width: 100%;
2020-02-16 13:36:36 +01:00
padding-top: $page-padding-top-mobile;
2019-08-21 22:52:29 +02:00
2019-08-24 13:32:41 +02:00
.categories-card {
.card-item {
width: 100%;
2019-08-24 13:32:41 +02:00
}
}
2019-08-19 21:01:15 +02:00
}
2020-02-03 18:55:24 +01:00
.copyright {
.copyright-line {
.icp-splitter {
display: none;
}
.icp-br {
display: block;
}
}
}
2019-08-11 19:36:19 +02:00
}