Web/projects/starwars/css/print.css
2022-08-31 13:38:16 +02:00

41 lines
529 B
CSS

@media print {
header,
#header {
display: none;
}
footer,
#footer {
display: none;
}
h2 {
text-align: center;
margin-bottom: 1.5rem;
}
p {
text-align: justify;
}
img {
display: block;
margin: auto;
max-width: 25vw;
width: 100%;
}
.container {
max-width: 100%;
}
video {
display: none;
}
input[type="reset"],
input[type="submit"] {
display: none;
}
}