-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcamp.html
More file actions
112 lines (98 loc) · 3.37 KB
/
camp.html
File metadata and controls
112 lines (98 loc) · 3.37 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Camp Readiness Checklist</title>
<meta name="description" content="packing list for a happy camper">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
color: #333;
margin: 20px;
}
h1 {
text-align: center;
color: #007bff;
}
form {
column-count: 3;
column-gap: 20px;
}
input[type="checkbox"] {
margin-right: 1rem;
}
label {
width: 100%;
display: inline-block;
padding: .25rem 0;
cursor: pointer;
background-color: #faa;
}
label:has(input[type="checkbox"]:checked) {
background-color: #afa;
}
@media (max-width: 1000px) {
form {
column-count: 2;
}
}
@media (max-width: 500px) {
form {
column-count: 1;
}
}
@media (min-width: 1500px) {
form {
column-count: 4;
}
}
</style>
</head>
<body>
<h1>Camp Readiness Checklist</h1>
<list>
<form>
<label><input type="checkbox"> table</label><br>
<label><input type="checkbox"> table cloth</label><br>
<label><input type="checkbox"> propane</label><br>
<label><input type="checkbox"> propane burner</label><br>
<label><input type="checkbox"> tent</label><br>
<label><input type="checkbox"> air mattress</label><br>
<label><input type="checkbox"> sleeping bag</label><br>
<label><input type="checkbox"> pots and pans</label><br>
<label><input type="checkbox"> silverware</label><br>
<label><input type="checkbox"> kettle</label><br>
<label><input type="checkbox"> coffee presses</label><br>
<label><input type="checkbox"> tea and coffee</label><br>
<label><input type="checkbox"> hats</label><br>
<label><input type="checkbox"> sunblock</label><br>
<label><input type="checkbox"> lotion</label><br>
<label><input type="checkbox"> sunglasses and glasses</label><br>
<label><input type="checkbox"> weed stuff</label><br>
<label><input type="checkbox"> fingernail clipper and file</label><br>
<label><input type="checkbox"> prunes</label><br>
<label><input type="checkbox"> phone</label><br>
<label><input type="checkbox"> bear horn</label><br>
<label><input type="checkbox"> camp chairs</label><br>
<label><input type="checkbox"> firewood</label><br>
<label><input type="checkbox"> candles</label><br>
<label><input type="checkbox"> bug stuff</label><br>
<label><input type="checkbox"> dishsoap</label><br>
<label><input type="checkbox"> rags and napkins</label><br>
<label><input type="checkbox"> coffee cups</label><br>
<label><input type="checkbox"> hot mits</label><br>
<label><input type="checkbox"> gloves</label><br>
<label><input type="checkbox"> pillows</label><br>
<label><input type="checkbox"> glasses cleaner</label><br>
<label><input type="checkbox"> cutting boards</label><br>
<label><input type="checkbox"> mustard</label><br>
<label><input type="checkbox"> hot sauce</label><br>
<label><input type="checkbox"> toothbrushes and paste</label><br>
<label><input type="checkbox"> camelbacks</label><br>
<label><input type="checkbox"> bladders</label><br>
<label><input type="checkbox"> coffee grinder</label>
</form>
</body>
</html>