Skip to content
Snippets Groups Projects
print.css 1.39 KiB
Newer Older
Lukas Ruge's avatar
Lukas Ruge committed
@page {
    size: auto;
    margin: 0;
}

@print {
    @page :footer {
        display: none
    }
 
    @page :header {
        display: none
    }
}

@media print {
    @page {
        margin-top: 0;
        margin-bottom: 0;
    }
    body {
        padding-top: 72px;
        padding-bottom: 72px ;
    }
}

.header { 
	display:none;
Lukas Ruge's avatar
Lukas Ruge committed
}

.footer {
	display:none;
Lukas Ruge's avatar
Lukas Ruge committed
}

body {
	background-color: white !important;
}

p, a, h1, h2, h3, h4 {
	color: black;
}

.form-line {
	width: 100%; //fallback
   	width: 100vw;
   	display: block;
}

Lukas Ruge's avatar
Lukas Ruge committed
.url-for-print {
    display: block;
}

.personlink{
    display:none; 
}

.not-in-print {
    display:none; 
}

.only-in-print {
    display: block;
}

.email-for-print {
Lukas Ruge's avatar
Lukas Ruge committed
    display: inline-block;
Lukas Ruge's avatar
Lukas Ruge committed
.line-with-text-under {
	margin: 20px 10px;
  	border-top: 1px solid black;
  	width: 400px; 
  	font-style: italic;
  	text-align: center;
}

.long-line-with-text-under {
	margin: 20px 10px;
  	border-top: 1px solid black;
  	width: 100vw; 
  	font-style: bold;
  	text-align: center;
}

#square {
   	height:2in;
   	width:6in;
 	border: 1px solid;
  }

 @media print {
    .pagebreak { page-break-before: always; } /* page-break-after works, as well */
Lukas Ruge's avatar
Lukas Ruge committed
}

@media print {
  .two-columns {
    column-count: 2;
    -webkit-column-count: 2;
    -moz-column-count: 2;
Lukas Ruge's avatar
Lukas Ruge committed
    font-size: 10px;
Lukas Ruge's avatar
Lukas Ruge committed
  }
  .one {
    column-count: 1;
    -webkit-column-count: 1;
    -moz-column-count: 1;
  }