This repository has been archived by the owner on Dec 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
197 lines (170 loc) · 7.94 KB
/
index.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Benny's List</title>
<!--
This 3rd-party stylesheet makes available the font families to be used
for this page ("Roboto" and "Roboto Slab").
-->
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100&family=Roboto:wght@300;400&display=swap" rel="stylesheet">
<!--
This 3rd-party stylesheet incorporates SVG icons from Font Awesome:
http://fontawesome.com/. Specifically, each of the <i> elements below
incorporates an icon from Font Awesome.
-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="header-image-container">
<img src="benny.jpg" alt="Benny logo">
</div>
<h1 class="site-title"><a href="#">Benny's List</a></h1>
</header>
<main class="content">
<aside class="filter-container">
<h2>Filters</h2>
<div class="filter-input-container">
<label for="filter-text" class="filter-input-label">Text</label>
<div class="filter-input-element">
<input type="text" name="filter-text" id="filter-text" class="filter-input">
</div>
</div>
<div class="filter-input-container">
<label for="filter-min-price" class="filter-input-label">Price</label>
<div class="filter-input-element">
<input type="text" name="filter-min-price" id="filter-min-price" class="filter-input" placeholder="min">
</div>
<div class="filter-input-element">
<input type="text" name="filter-max-price" id="filter-max-price" class="filter-input" placeholder="max">
</div>
</div>
<div class="filter-input-container">
<label for="filter-city" class="filter-input-label">City</label>
<div class="filter-input-element">
<select id="filter-city" class="filter-input" name="filter-city">
<option selected value="">Any</option>
<option>Corvallis</option>
<option>Albany</option>
<option>Eugene</option>
<option>Portland</option>
<option>Salem</option>
<option>Bend</option>
</select>
</div>
</div>
<div class="filter-input-container">
<fieldset id="filter-condition" class="filter-fieldset">
<legend>Condition</legend>
<div>
<input type="checkbox" name="filter-condition" id="filter-condition-new" value="new">
<label for="filter-condition-new">New</label>
</div>
<div>
<input type="checkbox" name="filter-condition" id="filter-condition-excellent" value="excellent">
<label for="filter-condition-excellent">Excellent</label>
</div>
<div>
<input type="checkbox" name="filter-condition" id="filter-condition-good" value="good">
<label for="filter-condition-good">Good</label>
</div>
<div>
<input type="checkbox" name="filter-condition" id="filter-condition-fair" value="fair">
<label for="filter-condition-fair">Fair</label>
</div>
<div>
<input type="checkbox" name="filter-condition" id="filter-condition-poor" value="poor">
<label for="filter-condition-poor">Poor</label>
</div>
</fieldset>
</div>
<button id="filter-update-button" class="action-button">Update</button>
</aside>
<section id="posts">
<div class="post">
<div class="post-contents">
<div class="post-image-container">
<img src="https://i.pinimg.com/originals/07/e0/8c/07e08c1195f197dab954a89723339b3b.jpg" alt="Super nice laptop">
</div>
<div class="post-info-container">
<a href="#" class="post-title">Super nice laptop</a> <span class="post-price">$500</span> <span class="post-city">(Eugene)</span>
</div>
</div>
</div>
<div class="post">
<div class="post-contents">
<div class="post-image-container">
<img src="https://p1.pxfuel.com/preview/998/294/512/meadow-yellow-rain-coat-mountains.jpg" alt="Yellow Raincoat">
</div>
<div class="post-info-container">
<a href="#" class="post-title">Yellow raincoat</a> <span class="post-price">$20</span> <span class="post-city">(Corvallis)</span>
</div>
</div>
</div>
<div class="post">
<div class="post-contents">
<div class="post-image-container">
<img src="http://static-21.sinclairstoryline.com/resources/media/9e359e52-2d79-4aa6-a43b-2ba534b9db0c-large16x9_378b19aa394049a4a9ca7101e4e75be4voodoodoughnutrecord660.jpg?1463527394583" alt="Very large pile of interesting donuts">
</div>
<div class="post-info-container">
<a href="#" class="post-title">Very large pile of interesting donuts</a> <span class="post-price">$100</span> <span class="post-city">(Portland)</span>
</div>
</div>
</div>
<div class="post">
<div class="post-contents">
<div class="post-image-container">
<img src="http://static.legalsolutions.thomsonreuters.com/product_photos/p40307624-141728L.jpg" alt="Oregon laws">
</div>
<div class="post-info-container">
<a href="#" class="post-title">Oregon laws</a> <span class="post-price">$250</span> <span class="post-city">(Salem)</span>
</div>
</div>
</div>
<div class="post">
<div class="post-contents">
<div class="post-image-container">
<img src="http://i.huffpost.com/gen/1573833/images/o-SUNSHINE-facebook.jpg" alt="Sunshine">
</div>
<div class="post-info-container">
<a href="#" class="post-title">Sunshine</a> <span class="post-price">$1</span> <span class="post-city">(Bend)</span>
</div>
</div>
</div>
<div class="post">
<div class="post-contents">
<div class="post-image-container">
<img src="http://www.portlandhipster.com/wp-content/uploads/2015/09/hipsters.jpg" alt="Hipsters">
</div>
<div class="post-info-container">
<a href="#" class="post-title">Hipsters</a> <span class="post-price">$99</span> <span class="post-city">(Portland)</span>
</div>
</div>
</div>
<div class="post">
<div class="post-contents">
<div class="post-image-container">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/102707-Oregon-AutzenStadium-ext.jpg/1200px-102707-Oregon-AutzenStadium-ext.jpg" alt="Football stadium (we kind of want to build a new one)">
</div>
<div class="post-info-container">
<a href="#" class="post-title">Football stadium (we kind of want to build a new one)</a> <span class="post-price">$20000000</span> <span class="post-city">(Eugene)</span>
</div>
</div>
</div>
<div class="post">
<div class="post-contents">
<div class="post-image-container">
<img src="https://farm2.staticflickr.com/1258/1366422925_25663f44c8_z.jpg" alt="Very nice farmer's market">
</div>
<div class="post-info-container">
<a href="#" class="post-title">Very nice farmer's market</a> <span class="post-price">$10000</span> <span class="post-city">(Corvallis)</span>
</div>
</div>
</div>
</section>
</main>
<button type="button" id="sell-something-button"><i class="fas fa-plus"></i></button>
</body>
</html>