42 lines
499 B
SCSS
42 lines
499 B
SCSS
|
@page {
|
||
|
margin: 1cm !important;
|
||
|
}
|
||
|
body {
|
||
|
font-size: $small-device-font-size;
|
||
|
line-height: 1.3;
|
||
|
background: #fff;
|
||
|
color: #000;
|
||
|
}
|
||
|
|
||
|
.sidebar,
|
||
|
.navigation {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
margin: 0 auto;
|
||
|
width: 100%;
|
||
|
float: none;
|
||
|
display: initial;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
width: 100%;
|
||
|
float: none;
|
||
|
display: initial;
|
||
|
padding-left: 1rem;
|
||
|
padding-right: 1rem;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
img {
|
||
|
max-width: 100%;
|
||
|
}
|
||
|
blockquote,
|
||
|
ul {
|
||
|
margin: 0;
|
||
|
}
|
||
|
#disqus_thread {
|
||
|
display: none !important;
|
||
|
}
|
||
|
|