Skip to content

Commit 4e96f78

Browse files
committed
Updated formatting
1 parent 406010f commit 4e96f78

2 files changed

Lines changed: 23 additions & 19 deletions

File tree

css/index.css

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ path {
116116
}
117117

118118
#schedule table {
119-
width: 100%;
119+
max-width: 100%;
120120
}
121121

122122
#schedule table td, #schedule table th {
@@ -364,7 +364,7 @@ button.cta i.fa, .button.cta i.fa {
364364
}
365365

366366

367-
@media screen and (max-width: 1200px) {
367+
@media screen and (max-width: 1024px) {
368368
nav {
369369
background: black;
370370
height: 100vh;
@@ -406,9 +406,13 @@ button.cta i.fa, .button.cta i.fa {
406406
#hero-text{
407407
font-size:2em;
408408
}
409+
410+
.col3 {
411+
display:none;
412+
}
409413
}
410414

411-
@media screen and (min-width: 960px) {
415+
@media screen and (min-width: 1024px) {
412416
header nav {
413417
display: block;
414418
}

index.html

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ <h1>Schedule</h1>
7777
<th>
7878
Topic Name
7979
</th>
80-
<th>
80+
<th class="col3">
8181
Description
8282
</th>
8383
</tr>
@@ -90,7 +90,7 @@ <h1>Schedule</h1>
9090
<td>
9191
Club Pitch
9292
</td>
93-
<td>
93+
<td class="col3">
9494
Introduction to the club!
9595
</td>
9696
</tr>
@@ -101,7 +101,7 @@ <h1>Schedule</h1>
101101
<td>
102102
HTML, DOM, repl.it
103103
</td>
104-
<td>
104+
<td class="col3">
105105
How does the browser renders pages?
106106
<br />
107107
What is a window, document, body, etc.? + intro to HMTL tags
@@ -114,7 +114,7 @@ <h1>Schedule</h1>
114114
<td>
115115
Basic JS intro
116116
</td>
117-
<td>
117+
<td class="col3">
118118
Intro to javascript: variables, loops, classes, etc.
119119
</td>
120120
</tr>
@@ -125,7 +125,7 @@ <h1>Schedule</h1>
125125
<td>
126126
JS and the DOM
127127
</td>
128-
<td>
128+
<td class="col3">
129129
Connect JS to elements and events on the page
130130
</td>
131131
</tr>
@@ -136,7 +136,7 @@ <h1>Schedule</h1>
136136
<td>
137137
CSS Styling
138138
</td>
139-
<td>
139+
<td class="col3">
140140
intro to selectors (id, class, tags) and properties
141141
</td>
142142
</tr>
@@ -147,7 +147,7 @@ <h1>Schedule</h1>
147147
<td>
148148
CSS properties
149149
</td>
150-
<td>
150+
<td class="col3">
151151
Details about formatting element properties
152152
</td>
153153
</tr>
@@ -158,7 +158,7 @@ <h1>Schedule</h1>
158158
<td>
159159
Making CSS template
160160
</td>
161-
<td>
161+
<td class="col3">
162162
Use bootstrap to start making a portfolio template
163163
</td>
164164
</tr>
@@ -169,7 +169,7 @@ <h1>Schedule</h1>
169169
<td>
170170
File structures, DNS, Networking, CDN
171171
</td>
172-
<td>
172+
<td class="col3">
173173
index.html, putting js in src, relative references, best practices for files, etc.
174174
</td>
175175
</tr>
@@ -180,7 +180,7 @@ <h1>Schedule</h1>
180180
<td>
181181
Live Q&A
182182
</td>
183-
<td>
183+
<td class="col3">
184184
Q&A about anything from previous lectures
185185
</td>
186186
</tr>
@@ -191,7 +191,7 @@ <h1>Schedule</h1>
191191
<td>
192192
Git tutorial
193193
</td>
194-
<td>
194+
<td class="col3">
195195
Versioning, branching, etc.
196196
</td>
197197
</tr>
@@ -202,7 +202,7 @@ <h1>Schedule</h1>
202202
<td>
203203
GitHub Pages
204204
</td>
205-
<td>
205+
<td class="col3">
206206
Set up the portfolio on GitHub pages
207207
</td>
208208
</tr>
@@ -213,7 +213,7 @@ <h1>Schedule</h1>
213213
<td>
214214
Live Sharing
215215
</td>
216-
<td>
216+
<td class="col3">
217217
Share final profile page with everyone, Live Q&A
218218
</td>
219219
</tr>
@@ -224,7 +224,7 @@ <h1>Schedule</h1>
224224
<td>
225225
Asynchronous Code
226226
</td>
227-
<td>
227+
<td class="col3">
228228
Async, await, promises, etc.
229229
</td>
230230
</tr>
@@ -265,7 +265,7 @@ <h1>Officers</h1>
265265
</a>
266266
</p>
267267
</span>
268-
268+
269269
<!-- Sofia -->
270270
<span style="width: 270;" class="person">
271271
<img class="profilePic" src="./images/profiles/sofia2.png"></img>
@@ -376,4 +376,4 @@ <h1>Questions?</h1>
376376
<script src="js/index.js"></script>
377377
</body>
378378

379-
</html>
379+
</html>

0 commit comments

Comments
 (0)