mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
30 lines
601 B
SCSS
30 lines
601 B
SCSS
// main: theme.scss
|
|
|
|
@media print {
|
|
#sidebar, #navigation, #top-bar, .anchor, #sidebar-toggle-span, .copy-to-clipboard {
|
|
display:none;
|
|
}
|
|
#navigation * {
|
|
display:none;
|
|
visibility: hidden;
|
|
}
|
|
#body-inner {
|
|
margin-bottom: 0px;
|
|
}
|
|
#footer, .footline{
|
|
margin-top: 1px;
|
|
}
|
|
body, a {
|
|
font-size: 120%;
|
|
color: black !important;
|
|
background: white !important
|
|
}
|
|
h1, h2, h3, h4, h5, h6 {
|
|
color: black !important;
|
|
background: white !important
|
|
}
|
|
#body{
|
|
margin-left: 0px;
|
|
}
|
|
}
|