_content/css: hide the footer in media print

Currently, unlike the site header, the site footer is visible when
printing a document.

Change-Id: Ieb17be48cd0aa679cb0a4e675df7c39678d9b45a
Reviewed-on: https://go-review.googlesource.com/c/website/+/394174
Reviewed-by: Jamal Carvalho <jamalcarvalho@google.com>
Trust: Ian Lance Taylor <iant@google.com>
This commit is contained in:
Manlio Perillo 2022-03-21 15:52:37 +01:00 коммит произвёл Ian Lance Taylor
Родитель 1847c6bb80
Коммит e0a1222b20
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -322,7 +322,10 @@ a:hover {
line-height: 1.55;
}
@media print {
.Site-header { display: none; }
.Site-header,
.Site-footer {
display: none;
}
}
.Header,
.Container {