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

_print.scss « sass « assets - gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52b7a158f38459e3cf80830062df9ddb62f440d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Print */

@media print{
    @page {
      size: A4;
      margin:0;
    }
    html, body {
        width: 210mm;
        height: 297mm;
        background: #FFF;
        overflow: hidden;
        margin: 0; padding:0;
    }
  
    .resumeCanvas { 
      margin: 0;
      width: 100%; height: 100%;
      -moz-box-shadow: none;
      -webkit-box-shadow: none;
      box-shadow: none;
    }
}