@charset "utf-8";
/* 
    Assignment 7 - Your Personal Website
    Author: Timothy Jordan Whitehead
    File: print.css
    Print Media Stylesheet
*/

a {
    color: black !important;
    text-decoration: none;
}
/* display URL after hyperlink */
a::after {
    content: " ("attr(href) ") ";
    font-weight: bold;
    word-wrap: break-word;
    font-size: 0.8em;
}

/* formatting for page from personal.css */
main > img{
    width: 25%;
    padding: 25px;
}
img{
    float: right;
}
/* do not show navicon on print */
a#navicon {
    display:none;
}