@charset "utf-8";
/* 
	Author:		Eric Zimmer
	Date:		09/27/2023
	Purpose: 	This is the print stylesheet for my personal professional website.
	Filename:	print.css
*/

@media print {

    html, body * {
        color: black !important;
        background-color: white !important;
    }

    #welcome-heading span {
        color: black;
        animation: none;
    }

    .nav-bar-list, footer a, body {
        box-shadow: none;
    }

    .nav-bar-list-item a, .nav-bar-list-item a:hover, .nav-bar-list-item a:active, .toggle-about-me, .about-me-pics-scroll,  #projects-heading, footer a:active, footer a:hover {
        color: black;
    }

    #current, .active {
        color: black;
    }

    .project-link a, .prev, .next, .carousel-control-prev, .carousel-control-next {
        display: none;
    }

    #carousel-img {
        display: none !important;
    }

    #article-image {
        display: none;
    }

    #print-notice {
        display: block;
        font-weight: bold;
    }

    .about-me-article {
        background-color: white;
        box-shadow: none;
    }

    .image-container, .light-dark-toggle {
        display: none;
    }

    .resume-link a {
        display: none;
    }

    #resume-download {
        color: black;
    }

    .link-button {
        border: none;
        color: black;
    }
}