Set Paged.js in presentation mode: Difference between revisions

From creative crowd wiki
Jump to navigation Jump to search
(Created page with "<syntaxhighlight lang="css"> →‎------------------------------------- presentation mode: @media screen{ div.pagedjs_pages { display: block !important; } div.pagedjs_page{ display: block; margin: 1em auto !important; clear: both !important; } } /* ------------------------------------- </syntaxhighlight>")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
     div.pagedjs_pages {
     div.pagedjs_pages {
         display: block !important;
         display: block !important;
        width: unset !important;
     }
     }
     div.pagedjs_page{
     div.pagedjs_page{
         display: block;
         display: block;
         margin: 1em auto !important;
         margin: 1em auto !important;
        clear: both !important;
     }
     }
}
}
/* -------------------------------------
/* -------------------------------------
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 09:49, 24 September 2025

/* ------------------------------------- presentation mode */
@media screen{
    div.pagedjs_pages {
        display: block !important;
        width: unset !important;
    }
    div.pagedjs_page{
        display: block;
        margin: 1em auto !important;
    }
}
/* -------------------------------------