24 lines
353 B
CSS
24 lines
353 B
CSS
.print_only {
|
|
display : none;
|
|
}
|
|
|
|
@media print {
|
|
.top-print{
|
|
|
|
display:none;
|
|
}
|
|
*{
|
|
float:none !important;
|
|
}
|
|
.print_only {
|
|
display : block;
|
|
}
|
|
|
|
#menu_container, .petitions_large_view, .bottom, .sub_bottom{
|
|
display : none;
|
|
}
|
|
|
|
#main{
|
|
box-shadow: 0 0 0px rgba(0, 0, 0, 0) !important;
|
|
}
|
|
} |