-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
246 additions
and
204 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
#map { | ||
border: 2px black solid; | ||
height: 600px; | ||
} | ||
|
||
body { | ||
width: 100%; | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #9badbf; | ||
font: 12pt "Tahoma"; | ||
} | ||
|
||
* { | ||
box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
} | ||
|
||
.page { | ||
width: 210mm; | ||
min-height: 297mm; | ||
padding: 20mm; | ||
margin: 10mm auto; | ||
border: 1px #D3D3D3 solid; | ||
border-radius: 5px; | ||
background: white; | ||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.subpage { | ||
padding: 1cm; | ||
border: 5px black solid; | ||
height: 257mm; # | ||
outline: 2cm #bacce1 solid; | ||
} | ||
|
||
@page { | ||
size: A4; | ||
margin: 0; | ||
} | ||
|
||
@media print { | ||
html, body { | ||
width: 210mm; | ||
height: 297mm; | ||
} | ||
.page { | ||
margin: 0; | ||
border: initial; | ||
border-radius: initial; | ||
width: initial; | ||
min-height: initial; | ||
box-shadow: initial; | ||
background: initial; | ||
page-break-after: always; | ||
} | ||
} | ||
|
||
h1 { | ||
margin: 1em 0 0.5em 0; | ||
color: #343434; | ||
font-weight: normal; | ||
font-family: 'Ultra', sans-serif; | ||
font-size: 36px; | ||
line-height: 42px; | ||
text-align: center; | ||
text-transform: uppercase; | ||
text-shadow: 0 2px white, 0 3px #777; | ||
} | ||
|
||
h4 { | ||
margin: 1em 0 0.5em 0; | ||
color: #343434; | ||
font-size: 14px; | ||
line-height: 20px; | ||
font-weight: normal; | ||
font-family: 'Orienta', sans-serif; | ||
} | ||
|
||
.footer { | ||
float: right; | ||
height: 35px; | ||
font-family: arial, helvetica; | ||
font-weight: bold; | ||
font-size: 11px; | ||
font-style: italic; | ||
} | ||
|
||
.zoom25 { | ||
zoom: 0.25; | ||
-moz-transform: scale(0.25); | ||
} | ||
|
||
.zoom50 { | ||
zoom: 0.5; | ||
-moz-transform: scale(0.5); | ||
} | ||
|
||
.zoom75 { | ||
zoom: 0.75; | ||
-moz-transform: scale(0.75); | ||
} | ||
|
||
.zoom100 { | ||
zoom: 1; | ||
-moz-transform: scale(1); | ||
} |
Oops, something went wrong.