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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
| * { box-sizing: border-box; }
html { font-family: sans-serif; }
body { margin: 0; background: #ccc; }
article { width: 210mm; height: 297mm; margin: 20px auto; position: relative; background-image: url(top-image.png),url(bottom-image.png), linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 80%, rgba(0,0,0,0.2) 100%); background-position: top,bottom,center; background-repeat: no-repeat; background-color: white; border-top: 1mm solid red; border-bottom: 1mm solid red; }
address { position: absolute; bottom: 8mm; right: 20mm; }
h1 { position: absolute; top: 12mm; left: 20mm; width: 128px; height: 128px; font-size: 20px; letter-spacing: 1px; text-align: center; padding: 44px 0; color: white; text-shadow: 1px 1px 1px black; background-image: url(logo.png); filter: drop-shadow(5px 5px 5px black); }
|