-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenderEquality.html
342 lines (281 loc) · 7.35 KB
/
genderEquality.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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/reset.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap" rel="stylesheet">
<title>Chérie · Gender Equality</title>
<style>
html{
font-family: 'Open Sans', sans-serif;
overflow: scroll;
height: 100vh;
background-color: #E9DAC4;
}
h1{
font-size: 80px;
}
h2{
font-size: 50px;
}
p{
font-size: 20px;
}
li{
font-size: 20px;
}
#pageLinks{
display: flex;
align-items: center;
justify-content: center;
}
#pageLinks a{
text-decoration: none;
color: #E9DAC4;
}
#nav{
background-color: #290A00;
height: 90px;
width: 100%;
position: fixed;
top: 0;
animation: fadein 1s;
}
#nav img{
width: 75px;
float: left;
position: absolute;
}
#nav li{
list-style-type: none;
float: left;
padding-right: 30px;
color: #E9DAC4;
}
#nav ul{
padding-top: 30px;
}
#topBackground{
background-color: #290A00;
height: 80vh;
scroll-snap-align: center;
margin-top: 15px;
padding-top: 20vh;
}
#welcome {
padding: 15px;
background-color: #290A00;
margin: auto;
width: 300px;
height: 250px;
margin-top: 30px;
padding-top: 40px;
}
#welcome h1{
color: #E9DAC4;
display: inline-block;
letter-spacing: 0.03em;
font-size: 75px;
}
.gradBorder{
margin: auto;
width: 375px;
height: 375px;
background-image: url("images/blm-collage.png");
background-size: 500px;
padding: 10px;
}
#backtotop{
display: flex;
align-items: right;
justify-content: right;
position: fixed;
right: 5px;
bottom: 5px;
background-color: hsla(360, 100%, 0%, 0.5);
float: right;
border: 3px solid hsla(360, 100%, 100%, 0.73);
padding: 2px;
}
#backtotop a{
text-decoration: none;
color: hsla(360, 100%, 100%, 0.73);
}
#toc{
width: 99%;
height: 75px;
margin: auto;
border-bottom: 3px solid;
border-image-slice: 1;
border-image-source: linear-gradient(to left, #7A1F00, #290A00);
}
#toc h2{
float: left;
margin-right: 30px;
color: #290A00;
padding-left: 10px;
padding-top: 5px;
}
#toc li{
float: left;
margin-right: 15px;
padding-top: 25px;
}
#toc a{
text-decoration: none;
color: #290A00;
}
#mainContent{
background-color: #E9DAC4;
width: 99%;
margin: auto;
clear: both;
padding-top: 10px;
display: grid;
grid-template-columns: 1fr;
}
.contSect{
margin-top: 20px;
border-bottom: 2px dashed #290A00;
padding-bottom: 25px;
}
.sectionHeader{
width: 40%;
margin-top: 10px;
float: left;
border: 5px solid;
border-image-slice: 1;
border-image-source: linear-gradient(to left, #7A1F00, #290A00);
}
.sectionHeader h1{
text-align: center;
padding: 20px;
}
.desc{
width: 58%;
float: left;
min-height: 150px;
padding-left: 15px;
padding-top: 15px;
line-height: 30px;
}
.desc a{
color: #290A00;
}
.links{
margin-left: 30px;
list-style: disc;
list-style-position: inside;
color: #290A00;
}
footer{
background-color: #290A00;
height: 40px;
width: 100%;
color: #E9DAC4;
}
footer p{
font-size: 15px;
text-align: center;
padding-top: 8px;
}
@media screen and (max-width: 1000px) {
.sectionHeader{
border: none;
display: inline-grid;
margin: auto;
}
}
</style>
</head>
<body>
<div id="nav">
<img src="images/almondLogo.png">
<div id="pageLinks">
<ul>
<li> <a href="index.html"> Home </a> </li>
<li> <a href="stories.html"> Stories </a> </li>
<li> <a href="about.html"> About </a> </li>
<li> <a href="contact.html"> Contact </a> </li>
</ul>
</div>
</div>
<div id="topBackground">
<div class="gradBorder">
<div id="welcome">
<h1> Equality <br> for <br> all. </h1>
</div>
</div>
<div id="backtotop">
<a href="#"> <p> ↑ </p> </a>
</div>
</div>
<div id="toc">
<h2> Jump to... </h2>
<ul>
<li> <a href="#toc"> Summary </a> </li>
<li> <a href="#summary"> Learn </a> </li>
<li> <a href="#learn"> Help </a> </li>
<li> <a href="#help"> Carrd.co </a> </li>
<li> <a href="#carrdco"> Extra </a></li>
</ul>
</div>
<div id="mainContent">
<div class="contSect" id="summary">
<div class="sectionHeader">
<h1> SUMMARY </h1>
</div>
<div class="desc">
<p>Due to rooted stereotypes, discrimination and bias, people who are female, non-binary, or trangender, have had to make the constant effort to obtain equal rights. It is important to support their movement to ensure everyone is treated justly. </p>
</div>
</div>
<div class="contSect" id="learn">
<div class="sectionHeader">
<h1> LEARN </h1>
</div>
<div class="desc">
<p> <a href="https://www.hrw.org/topic/womens-rights#"> Human Rights Watch </a></p>
<p> <a href="https://www.youtube.com/watch?v=g2CewziXoDg"> NBC News Video </a></p>
</div>
</div>
<div class="contSect" id="help">
<div class="sectionHeader">
<h1> HELP </h1>
</div>
<div class="desc">
<p> <a href="https://www.amnesty.org/en/what-we-do/discrimination/womens-rights/#:~:text=Women's%20rights%20are%20human%20rights!&text=These%20include%20the%20right%20to,to%20earn%20an%20equal%20wage"> Amnesty International </a></p>
<p> <a href="https://smallprojectchicago.com/"> Chicago Small Businesses to Support </a></p>
<p> <a href="https://www.rachaelraymag.com/whats-new/female-owned-restaurants-and-businesses-chicago"> Female-Owned Restaurants </a></p>
<p> <a href="https://www.change.org/p/united-nations-hold-saudi-arabia-accountable-free-saudi-activists"> Saudi Female Activist Freedom from jail Petition </a> </p>
<p> <a href="https://www.change.org/p/ministry-of-education-transgender-rights-in-singapore?recruiter=839803130&recruited_by_id=7c7cf050-d985-11e7-88be-b50bfd4fb509"> Trans rights in Singapore Petition </a> </p>
<p> <a href="https://www.change.org/p/repeal-377a-and-legalise-same-sex-marriage-in-singapore"> Same-sex marriage rights in Singapore Petition </a> </p>
</div>
</div>
<div class="contSect" id="carrdco">
<div class="sectionHeader">
<h1> CARRD.CO </h1>
</div>
<div class="desc">
<p> <a href="https://genderequalityrights.carrd.co/"> https://genderequalityrights.carrd.co/ </a></p>
<p> <a href="https://womens-rights-petitions.carrd.co/"> https://womens-rights-petitions.carrd.co/ </a></p>
<p> <a href="https://supportwomen.carrd.co/"> https://supportwomen.carrd.co/ </a></p>
<p> <a href="https://genderequalityrights.carrd.co/"> https://genderequalityrights.carrd.co/ </a></p>
<p> <a href="https://transrightshumanrights.carrd.co/"> https://transrightshumanrights.carrd.co/ </a> </p>
<p> <a href="https://supportwomen.carrd.co/"> https://supportwomen.carrd.co/ </a> </p>
</div>
</div>
<div class="contSect" id="extras">
<div class="sectionHeader">
<h1> EXTRA </h1>
</div>
<div class="desc">
<p> <a href="https://www.youtube.com/watch?v=0oYd4r6H9W0"> Brainpop </a></p>
<p> <a href="https://www.youtube.com/watch?v=a6T5DeZ9Z4c"> Malala </a></p>
</div>
</div>
</div>
<footer> <p> Chérie Tree • Gender Equality • Last updated: 5/10/2021 2:11 PM </p> </footer>
</body>
<script>
</script>
</html>