37c091abe5
gros nettoyage et inclusion de perso.css
71 lines
1.3 KiB
SCSS
Executable File
71 lines
1.3 KiB
SCSS
Executable File
//------------------------------------------------
|
|
// Styles d'impression spécifiques au site
|
|
//------------------------------------------------
|
|
|
|
@media print {
|
|
|
|
.page_wrapper {
|
|
display: block;
|
|
min-height: inherit;
|
|
}
|
|
|
|
.page_container {
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.page_main__container {
|
|
display: block;
|
|
}
|
|
|
|
// blocs masqués
|
|
#spip-admin,
|
|
.debug_info,
|
|
.page_aside,
|
|
.page_extra,
|
|
.article__aside,
|
|
.forum_article,
|
|
.page_footer {
|
|
display: none !important;
|
|
}
|
|
|
|
// header
|
|
.page_header, .page_header_container {
|
|
padding: 0;
|
|
margin: 0;
|
|
background: none;
|
|
}
|
|
.page_header_container > * {
|
|
display: none;
|
|
}
|
|
|
|
.header_title {
|
|
display: block !important;
|
|
width: 100%;
|
|
font-size: em(36px);
|
|
font-weight: bold;
|
|
border-bottom: 1px solid #DDD;
|
|
padding-bottom: 0.5em;
|
|
margin-bottom: 0.75em;
|
|
a {
|
|
text-decoration: none !important;
|
|
}
|
|
}
|
|
|
|
.page_container {
|
|
width: 100%;
|
|
}
|
|
|
|
.page_main {
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
.page_url {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.article__main a[href]:after {
|
|
content: " (" attr(href) ")"; /* affichage des URL des liens */
|
|
}
|
|
|
|
}
|