Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_print.scss « css « assets - gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1fa6b77345d61972fa11859dd13e09e79c41026 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* Print */

@media print {
  @page {
    size: A4;
    margin: 0;
  }

  html, body {
      background: #fff;
      margin: 0;
      padding: 0;
  }

  .paper, main.paper {
    margin: 0;
    width: 210mm;
    height: 297mm;
    overflow: hidden;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    page-break-after: always;
  }

  a {
    text-decoration: none;
  }

  footer {
    display: none;
  }
}