-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes.html
98 lines (98 loc) · 1.9 KB
/
notes.html
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Productivity: Notes</title>
<style>
* {
box-sizing: border-box;
-moz-box-sizing: border-box;
}
body {
font-family: sans-serif;
padding: 0;
margin: 0;
width: 100%;
height: 100%;
}
section {
width: 148mm;
min-height: 210mm;
}
h1 {
margin-bottom: 10px;
border: 2px solid #000;
height: 40px;
width: 100%;
}
ul {
margin: 0;
padding: 0;
list-style-type: none;
}
li::before {
content: '▢';
margin-top: 1px;
margin-right: 4px;
}
li {
margin: 2px;
padding: 0;
line-height: 2;
border-bottom: 1px solid #ccc
}
/* thanks to https://jsfiddle.net/mturjak/2wk6Q/1949/ */
@page {
size: A4;
margin: 5mm;
}
@media print {
html, body {
width: 148mm;
height: 210mm;
}
section {
margin: 0;
border: initial;
border-radius: initial;
width: initial;
min-height: initial;
box-shadow: initial;
background: initial;
page-break-after: always;
}
}
</style>
</head>
<body>
<section>
<h1> </h1>
<div id="notes">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</section>
</body>
</html>