vuepress-theme-system
Version:
45 lines (37 loc) • 785 B
CSS
/*
Print
-------------------------------
From HTML5 Boilerplate
https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css
Black prints faster: http://www.sanbeiji.com/archives/953
*/
@media print {
*,
*::before,
*::after,
*::first-letter,
*::first-line {
background: transparent ;
color: #000 ;
box-shadow: none ;
text-shadow: none ;
}
a,
a:visited {
text-decoration: underline;
}
a[href]::after {
content: ' (' attr(href) ')';
}
abbr[title]::after {
content: ' (' attr(title) ')';
}
/*
Don't show links that are fragment identifiers,
or use the `javascript:` pseudo protocol
*/
a[href^='#']::after,
a[href^='javascript:']::after {
content: '';
}
}