CSS for pretty print

30 Apr 2014

I made some changes to the css file (a0ebc4a61da8.css) such that I can print the mbed web page better for offline viewing.

I added the following under @media print { ... }

@media print {

    a[href]:after {
        content: ""!important;
    }
	
    #top, #nav {
        display: none;
    }
    
    .breadcrumbs, .panel.radius, .flashbox.finfo.action-bar {
        display: none;
    }

    #mbed-content {
        width: 100%
    }
}