Skip to content

Commit ca480fd

Browse files
authored
Merge pull request #6 from keeprubyweird/schedule
Adding a schedule
2 parents 00e9cc4 + 394193c commit ca480fd

File tree

2 files changed

+188
-18
lines changed

2 files changed

+188
-18
lines changed

assets/_sass/_index.scss

Lines changed: 68 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -554,17 +554,79 @@
554554
}
555555
}
556556

557-
.sponsors, .weirdos {
557+
.schedule {
558+
background-color: $orange;
559+
560+
h2 {
561+
margin-bottom: $large-spacing;
562+
color: $mint;
563+
}
564+
565+
h3 {
566+
font-size: 48px;
567+
}
568+
569+
h4 {
570+
font-size: 34px;
571+
color: $hot-pink;
572+
letter-spacing: 3px;
573+
}
574+
575+
&__subtitle {
576+
color: $dark-purple;
577+
}
578+
579+
&__item {
580+
display: grid;
581+
grid-template-columns: 15% 1fr;
582+
grid-gap: $large-spacing;
583+
margin-bottom: $base-spacing;
584+
585+
&-time {
586+
text-align: right;
587+
}
588+
}
589+
590+
@media (max-width: 500px) {
591+
&__item {
592+
grid-template-columns: 10% 1fr;
593+
}
594+
595+
h3 {
596+
font-size: 38px;
597+
}
598+
599+
h4 {
600+
font-size: 24px;
601+
}
602+
}
603+
}
604+
605+
.weirdos .weirdos__container {
606+
max-width: 1600px;
607+
margin: 0 auto;
608+
}
609+
610+
.weirdos, .sponsors {
611+
&::after {
612+
bottom: -140px;
613+
content: "";
614+
display: block;
615+
position: absolute;
616+
right: 40%;
617+
top: 0;
618+
transform: skewX(-24deg);
619+
width: 100%;
620+
z-index: 0;
621+
}
622+
}
623+
624+
.schedule, .sponsors, .weirdos {
558625
padding: 15vh $x-large-spacing;
559626
overflow: hidden;
560627
flex-direction: column;
561628
position: relative;
562629

563-
.weirdos__container {
564-
max-width: 1600px;
565-
margin: 0 auto;
566-
}
567-
568630
h2 {
569631
position: relative;
570632
display: block;
@@ -604,18 +666,6 @@
604666
text-align: center;
605667
}
606668

607-
&::after {
608-
bottom: -140px;
609-
content: "";
610-
display: block;
611-
position: absolute;
612-
right: 40%;
613-
top: 0;
614-
transform: skewX(-24deg);
615-
width: 100%;
616-
z-index: 0;
617-
}
618-
619669
@media (max-width: 500px) {
620670
padding: 4.5rem 3rem;
621671
}

index.html

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,126 @@ <h4>{{ speaker.talk }}</h3>
160160
<a href="/conduct" class="button">Code of Conduct</a>
161161
</div>
162162
</section>
163+
164+
<section class="schedule">
165+
<h2>Schedule</h2>
166+
<div class="schedule__item">
167+
<h3 class="schedule__item-time">9:00</h3>
168+
<div class="schedule_item-titles">
169+
<h3>Second Breakfast</h3>
170+
<h4>registration, coffee, tacos</h4>
171+
</div>
172+
</div>
173+
<div class="schedule__item">
174+
<h3 class="schedule__item-time">10:00</h3>
175+
<div class="schedule_item-titles">
176+
<h3>Opening Remarks</h3>
177+
<h4>Absoluely dignified</h4>
178+
</div>
179+
</div>
180+
<div class="schedule__item">
181+
<h3 class="schedule__item-time">10:14</h3>
182+
<div class="schedule_item-titles">
183+
<h3>Keynote: Elle Meredith</h3>
184+
<h4>Algorithms to live by and why should we care</h4>
185+
</div>
186+
</div>
187+
<div class="schedule__item">
188+
<h3 class="schedule__item-time">11:00</h3>
189+
<div class="schedule_item-titles">
190+
<h3>Break</h3>
191+
<h4>Yeah, it's an awkwardly long break</h4>
192+
</div>
193+
</div>
194+
<div class="schedule__item">
195+
<h3 class="schedule__item-time">11:29</h3>
196+
<div class="schedule_item-titles">
197+
<h3>David Bock</h3>
198+
<h4>Ruby Investigation of Orthogonal Latin Squares of Order Ten</h4>
199+
</div>
200+
</div>
201+
<div class="schedule__item">
202+
<h3 class="schedule__item-time">12:00</h3>
203+
<div class="schedule_item-titles">
204+
<h3>Rolen Le</h3>
205+
<h4>Dungeons & Collaboration: A Player’s Handbook on How To Work With a
206+
Distributed Team</h4>
207+
</div>
208+
</div>
209+
<div class="schedule__item">
210+
<h3 class="schedule__item-time">12:30</h3>
211+
<div class="schedule_item-titles">
212+
<h3>Lunch</h3>
213+
<h4>It's Halloween so your food might be extra "organic"</h4>
214+
</div>
215+
</div>
216+
<div class="schedule__item">
217+
<h3 class="schedule__item-time">2:00</h3>
218+
<div class="schedule_item-titles">
219+
<h3>Ben Scofield</h3>
220+
<h4>Learning to see</h4>
221+
</div>
222+
</div>
223+
<div class="schedule__item">
224+
<h3 class="schedule__item-time">2:30</h3>
225+
<div class="schedule_item-titles">
226+
<h3>Bradley Grzesiak</h3>
227+
<h4>kerbal_space_program.rb</h4>
228+
</div>
229+
</div>
230+
<div class="schedule__item">
231+
<h3 class="schedule__item-time">3:02</h3>
232+
<div class="schedule_item-titles">
233+
<h3>Break</h3>
234+
<h4>Time is a flat circle</h4>
235+
</div>
236+
</div>
237+
<div class="schedule__item">
238+
<h3 class="schedule__item-time">3:30</h3>
239+
<div class="schedule_item-titles">
240+
<h3>Cecy Correa</h3>
241+
<h4>The Psychology of Fake News (and What Tech Can Do About It)</h4>
242+
</div>
243+
</div>
244+
<div class="schedule__item">
245+
<h3 class="schedule__item-time">4:00</h3>
246+
<div class="schedule_item-titles">
247+
<h3>Chris Arcand</h3>
248+
<h4>An Atypical 'Performance' Talk</h4>
249+
</div>
250+
</div>
251+
<div class="schedule__item">
252+
<h3 class="schedule__item-time">4:30</h3>
253+
<div class="schedule_item-titles">
254+
<h3>Hug Break</h3>
255+
<h4>We promised and we deliver!</h4>
256+
</div>
257+
</div>
258+
<div class="schedule__item">
259+
<h3 class="schedule__item-time">5:00</h3>
260+
<div class="schedule_item-titles">
261+
<h3>Dave Herman & Yehuda Katz</h3>
262+
<h4>We have no idea what they're gonna talk about but we hope it's like
263+
synchronized swimmming</h4>
264+
</div>
265+
</div>
266+
<div class="schedule__item">
267+
<h3 class="schedule__item-time">5:45</h3>
268+
<div class="schedule_item-titles">
269+
<h3>Closing Remarks</h3>
270+
<h4>We'll play "Closing Time" by Semisonic and shepherd you out like the
271+
last wedding you went to</h4>
272+
</div>
273+
</div>
274+
<div class="schedule__item">
275+
<h3 class="schedule__item-time">8:00</h3>
276+
<div class="schedule_item-titles">
277+
<h3>PARTY</h3>
278+
<h4>Why you come to conferences</h4>
279+
</div>
280+
</div>
281+
</section>
282+
163283
<section class="sponsors">
164284
<h2>Meet the sponsors</h2>
165285

0 commit comments

Comments
 (0)