This commit is contained in:
parent
ce2908f07a
commit
c444430f53
1 changed files with 36 additions and 2 deletions
|
|
@ -5,6 +5,7 @@
|
|||
<style>
|
||||
html {
|
||||
background-color: #929591; /*xkcd-grey*/
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
|
|
@ -15,12 +16,15 @@
|
|||
}
|
||||
.page {
|
||||
background-color: white;
|
||||
font-family: serif;
|
||||
box-sizing: border-box;
|
||||
width: 74mm;
|
||||
height: 105mm;
|
||||
margin: 4mm;
|
||||
padding: 4mm;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.page :first-child {
|
||||
margin-top: 0;
|
||||
|
|
@ -35,11 +39,41 @@
|
|||
@page {
|
||||
size: 74mm 105mm;
|
||||
}
|
||||
.year {
|
||||
font-weight: bold;
|
||||
font-size: 20mm;
|
||||
}
|
||||
.week {
|
||||
font-weight: bold;
|
||||
font-size: 20mm;
|
||||
}
|
||||
.date {
|
||||
font-size: 10mm;
|
||||
}
|
||||
.return-addr {
|
||||
font-weight: bold;
|
||||
margin: 8mm;
|
||||
}
|
||||
.footer {
|
||||
font-style: italic;
|
||||
font-size: smaller;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 4mm;
|
||||
width: 100%;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="page">
|
||||
<h1>page 1</h1>
|
||||
<div class="year" contenteditable>2025</div>
|
||||
<div class="week" contenteditable>W46</div>
|
||||
<div class="date" contenteditable>11-09 ... 11-15</div>
|
||||
<div class="return-addr" contenteditable>
|
||||
<p>Your Name Here</p>
|
||||
<p>email@example.com</p>
|
||||
</div>
|
||||
<div class="footer">nycki.net/papermod</div>
|
||||
</div>
|
||||
<div class="page">
|
||||
<h1>page 2</h1>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue