﻿/* Hello Computer Science 3 students. You may copy and edit anyting you find here to use when making your own websites. Remember to include the Creative Commons copyright notice! */

/* if the page is being printed, hide everything but the content */

@media print  {
    .jacksbox {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        grid-template-areas:
            "c";
    }

    label, nav, header, footer{
        display: none; 
    }
    
    body {       
        font-size:.8em;
        background-color: none;
    }
    
    div.hideWhenPrinting{
        display: none;
    }
}

