-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
334 lines (323 loc) · 8.41 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
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
332
333
334
<!DOCTYPE html>
<html>
<title>Wheeler Programming Team</title>
<link rel="icon" href="https://avatars.githubusercontent.com/u/70660334?s=400&u=8cd5fca0220b903b94485a72e82046e3f198d00f&v=4">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
hr {
border: 0.5px solid darkgray;
}
@media only screen and (min-width: 600px) {
h1 {
margin-inline: 1em;
width: max-content;
font-size: 3em;
font-family: monospace;
}
body {
font-family: monospace;
background-color: rgb(94, 94, 94);
}
.titleContainer {
margin-inline-start: 2em;
margin-block-start: 1em;
width: min-content;
font-size: 1.1em;
border: 3px solid black;
background-color: rgb(158, 163, 220);
box-shadow: rgb(64, 64, 64) 0.5px 0.5px 10px;
}
.infoBoxContainer {
display: flex;
flex-direction: row;
height: 79vh;
margin-top: 0.5em;
margin-left: 1em;
margin-right: 8em;
}
.flexColOne {
display: flex;
flex-direction: column;
grid-column: 1;
grid-row: 1;
max-width: 30vw;
height: fit-content;
}
.flexColTwo {
display: flex;
flex-direction: column;
grid-column: 2;
max-width: 40vw;
grid-row: 1;
height: fit-content;
}
.flexColThree {
display: flex;
flex-direction: column;
grid-column: 3;
max-width: 20vw;
grid-row: 1;
height: fit-content;
}
.infoBox {
margin: 1em;
margin-block: 0.5em;
font-size: 1.1em;
border: 3px solid black;
width: 90%;
height: min-content;
padding: 10px;
box-shadow: rgb(64, 64, 64) 0.5px 0.5px 10px;
}
.infoBox h2 {
}
.infoBox p {
}
.img {
width: 50%;
height: auto;
margin-left: 25%;
border-radius: 8px;
border: 3px solid black;
box-shadow: rgb(82, 82, 82) 0.5px 0.5px 10px;
}
.classroom {
background-color: rgb(171, 217, 158);
grid-column: 2;
grid-row: 2;
height: fit-content;
}
.github {
background-color: rgb(216, 159, 112);
grid-column: 2;
grid-row: 3;
height: fit-content;
}
.leadership {
background-color: palegoldenrod;
}
.learned {
background-color: rgb(171, 231, 231);
}
.goals {
background-color: palevioletred;
}
a {
text-decoration: underline;
color: rgb(91, 91, 187);
font-size: 1em;
}
.classroom a {
text-decoration: none;
color: black;
border: black 3px solid;
border-radius: 1em;
padding-inline: 3em;
padding-block: 1em;
background-color: rgb(213, 152, 251);
box-shadow: rgb(82, 82, 82) 0.5px 0.5px 10px;
}
.linkContainer {
display: flex;
width: 100%;
justify-content: center;
padding: 1em;
}
}
</style>
<style>
@media only screen and (max-width: 600px) {
h1 {
margin-inline: 1em;
width: min-content;
text-align: center;
font-size: 3em;
font-family: monospace;
}
body {
font-family: monospace;
background-color: rgb(94, 94, 94);
}
.titleContainer {
margin-inline: 0em;
font-size: 1.1em;
width: fit-content;
align-self: center;
border: 3px solid black;
background-color: rgb(158, 163, 220);
box-shadow: rgb(64, 64, 64) 0.5px 0.5px 10px;
}
.infoBoxContainer {
display: flex;
flex-direction: column;
margin-top: 0.5em;
margin-left: 1em;
width: 100vw;
margin-right: 3em;
}
p, ul, a {
font-size: 1.2em;
}
.flexColOne {
display: flex;
flex-direction: column;
max-width: max-content;
height: fit-content;
}
.flexColTwo {
display: flex;
flex-direction: column;
max-width: none;
height: fit-content;
}
.flexColThree {
display: flex;
flex-direction: column;
max-width: none;
height: fit-content;
}
.infoBox {
margin-right: 0em;
margin-block: 0.5em;
font-size: 1.1em;
border: 3px solid black;
width: 80%;
height: min-content;
padding: 2em;
box-shadow: rgb(64, 64, 64) 0.5px 0.5px 10px;
}
.img {
width: 50%;
height: auto;
margin-left: 25%;
border-radius: 8px;
border: 3px solid black;
box-shadow: rgb(82, 82, 82) 0.5px 0.5px 10px;
}
.classroom {
background-color: rgb(171, 217, 158);
}
.github {
background-color: rgb(216, 159, 112);
}
.leadership {
background-color: palegoldenrod;
}
.learned {
background-color: rgb(171, 231, 231);
}
.goals {
background-color: palevioletred;
}
a {
text-decoration: underline;
color: rgb(91, 91, 187);
font-size: 1em;
}
.classroom a {
text-decoration: none;
color: black;
border: black 3px solid;
border-radius: 1em;
padding-inline: 3em;
padding-block: 1em;
background-color: rgb(213, 152, 251);
box-shadow: rgb(82, 82, 82) 0.5px 0.5px 10px;
}
.linkContainer {
display: flex;
width: 100%;
justify-content: center;
padding: 1em;
}
}
</style>
<body>
<div class="titleContainer">
<h1>Wheeler Programming Club!</h1>
</div>
<div class="infoBoxContainer">
<div class="flexColOne">
<div class="infoBox goals" >
<h2>Goals!</h2>
<hr>
<p>
The goal of the programming club is to educate the upper school student body about computer science, as well as showcase and organize amazing computer science projects that our members think up.
<br>
<br>
In past years, we have gotten speakers in the computer
science field to talk about their unique work, but this
year we want to turn things up a notch by committing to
larger projects, some ideas include:
</p>
<ul><li>
A web based videogame coded in javascript
</li><li>
A raspberry pi based IoT project
</li><li>
A weather app for a custom built weather station
</li>
</ul>
<p>
We would love your help in any of these sorts of
projects, and would love to hear what other ideas
you would like to develop with the programming club. We
have also done hackathons in the past, and if you're
interested in putting together a team for one, please
reach out to a club leader, we would love to participate
in whatever you have in mind.
</p>
</div>
</div>
<div class="flexColTwo">
<div class="infoBox learned">
<h2>Do I need to know how to code to join?</h2>
<hr>
<p>
No! In the past we have held a couple of programming
workshops to teach the basics of coding, and we plan
to do more of these in the future. For projects, it
is useful to know how to code, but your ideas are
just as valuable as your coding skills. If you are
passionate about computer science, we would love to
have you.
</p>
</div>
<div class="infoBox classroom">
<h2>Classroom</h2>
<hr>
<div class="linkContainer">
<a href="https://classroom.google.com/c/MTY4NTg5NzY0MTda?cjc=c5jphuc">Join!</a>
</div>
</div>
<div class="infoBox github">
<h2>GitHub</h2>
<hr>
<p>
If you want to be added to the <a href="https://github.com/wheeler-programming-team">programming club github organization</a>,
shoot me an email at <i>[email protected]</i>
and I'll add you as soon as I can.
</p>
</div>
</div>
<div class="flexColThree">
<div class="infoBox leadership">
<h2>Leadership</h2>
<hr>
<img src="media/IMG_3271.png" class="img">
<p>
Hey y'all, my name's Daniel, and I'm the programming club head.
I really like computer science and coding, and especially love
writing code for hardware that I can interact with physically.
I am a lead developer for the robotics team, and have spent some
time working as a software engineering intern at a tech startup, so if you ever have any
questions about computer science, I am always down to share
my opinion with you. In addition to coding, I love playing
music, surfing, and woodworking :)
</p>
</div>
</div>
</div>
</body>
</html>