Events layout work
This commit is contained in:
parent
49db426aeb
commit
9896c6a52f
@ -20,4 +20,4 @@ email = "mail@va3zza.com"
|
||||
twitter = "ewpratten"
|
||||
github = "ewpratten"
|
||||
qrz = "va3zza"
|
||||
linkedin = "ewpratten"
|
||||
linkedin = "ewpratten"
|
||||
|
@ -7,20 +7,37 @@ I am a first-year college student, studying Information Security at Sheridan Col
|
||||
|
||||
## What I have been up to
|
||||
|
||||
- <span class="gray">06/21:</span> Participated in ARRL Summer Field Day, scoring 270 points
|
||||
- <span class="gray">04/21:</span> Produced [*Deep Breath*](https://github.com/Ewpratten/ludum-dare-48) as part of Ludum Dare 48
|
||||
- <span class="gray">08/20:</span> Participated in Google CTF 2020
|
||||
- <span class="gray">05/20:</span> Participated in Hack-A-Sat CTF
|
||||
- <span class="gray">04/20:</span> Produced [*Micromanaged Mike*](https://ldjam.com/events/ludum-dare/46/micromanaged-mike) as part of Ludum Dare 46
|
||||
- <span class="gray">03/20:</span> FRC Humber district event *finalists* as part of Raider Robotics
|
||||
- <span class="gray">02/20:</span> Participated in the Canadian Computing Competition
|
||||
- <span class="gray">06/19:</span> Participated in Google CTF 2019
|
||||
- <span class="gray">04/19:</span> FRC district championships *quarter-finalists* as part of Raider Robotics
|
||||
- <span class="gray">04/19:</span> FRC Western district event *semi-finalists* as part of Raider Robotics
|
||||
- <span class="gray">03/19:</span> Participated in the ECOO Programming Contest
|
||||
- <span class="gray">02/19:</span> FRC Ryerson district event *quarter-finalists* as part of Raider Robotics
|
||||
- <span class="gray">02/19:</span> Participated in the Canadian Computing Competition
|
||||
- <span class="gray">09/18:</span> Completed Google's *Foobar* programming challenge
|
||||
- <span class="gray">04/18:</span> Participated in the ECOO Programming Contest
|
||||
- <span class="gray">03/18:</span> FRC Waterloo district event *quarter-finalists* as part of Raider Robotics
|
||||
- <span class="gray">03/18:</span> FRC Georgian district event *quarter-finalists* as part of Raider Robotics
|
||||
<ul class="events-list">
|
||||
<li>2021</li>
|
||||
<ul>
|
||||
<li><div><span>Jun</span> <span>Participated in ARRL Summer Field Day, scoring 270 points</span></div></li>
|
||||
<li><div><span>Apr</span> <span>Produced <a href="https://github.com/Ewpratten/ludum-dare-48"><em>Deep Breath</em></a> as part of Ludum Dare 48</span></div></li>
|
||||
</ul>
|
||||
|
||||
<li>2020</li>
|
||||
<ul>
|
||||
<li><div><span>Aug</span> <span>Participated in Google CTF 2020</span></div></li>
|
||||
<li><div><span>May</span> <span>Participated in Hack-A-Sat CTF</span></div></li>
|
||||
<li><div><span>Apr</span> <span>Produced <a href="https://ldjam.com/events/ludum-dare/46/micromanaged-mike"><em>Micromanaged Mike</em></a> as part of Ludum Dare 46</span></div></li>
|
||||
<li><div><span>Mar</span> <span>FRC Humber district event *finalists* as part of Raider Robotics</span></div></li>
|
||||
<li><div><span>Feb</span> <span>Participated in the Canadian Computing Competition</span></div></li>
|
||||
</ul>
|
||||
|
||||
<li>2019</li>
|
||||
<ul>
|
||||
<li><div><span>Jun</span> <span>Participated in Google CTF 2019</span></div></li>
|
||||
<li><div><span>Apr</span> <span>FRC district championships *quarter-finalists* as part of Raider Robotics</span></div></li>
|
||||
<li><div><span>Apr</span> <span>FRC Western district event *semi-finalists* as part of Raider Robotics</span></div></li>
|
||||
<li><div><span>Mar</span> <span>Participated in the ECOO Programming Contest</span></div></li>
|
||||
<li><div><span>Feb</span> <span>FRC Ryerson district event *quarter-finalists* as part of Raider Robotics</span></div></li>
|
||||
<li><div><span>Feb</span> <span>Participated in the Canadian Computing Competition</span></div></li>
|
||||
</ul>
|
||||
|
||||
<li>2018</li>
|
||||
<ul>
|
||||
<li><div><span>Sep</span> <span>Completed Google's *Foobar* programming challenge</span></div></li>
|
||||
<li><div><span>Apr</span> <span>Participated in the ECOO Programming Contest</span></div></li>
|
||||
<li><div><span>Mar</span> <span>FRC Waterloo district event *quarter-finalists* as part of Raider Robotics</span></div></li>
|
||||
<li><div><span>Mar</span> <span>FRC Georgian district event *quarter-finalists* as part of Raider Robotics</span></div></li>
|
||||
</ul>
|
||||
</ul>
|
@ -64,7 +64,7 @@ body {
|
||||
.headshot-container {
|
||||
display: inline-block;
|
||||
max-width: 150px;
|
||||
@media only screen and (max-width: 377px) {
|
||||
@media only screen and (max-width: 382px) {
|
||||
display: block;
|
||||
margin: auto;
|
||||
}
|
||||
@ -103,3 +103,32 @@ body {
|
||||
.gray {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.events-list {
|
||||
& > li {
|
||||
color: gray;
|
||||
}
|
||||
& > ul {
|
||||
& > li {
|
||||
& > div {
|
||||
display: table-row;
|
||||
& > span {
|
||||
display: table-cell;
|
||||
|
||||
&:first-of-type {
|
||||
color: gray;
|
||||
width: 30px;
|
||||
letter-spacing: -0.35em;
|
||||
text-align: center;
|
||||
padding-right: 8px;
|
||||
text-transform: full-width;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user