Skip to content

Commit b65a6df

Browse files
committed
Updated language, styling
1 parent 8ae002f commit b65a6df

File tree

2 files changed

+32
-12
lines changed

2 files changed

+32
-12
lines changed

src/static/css/devcade.css

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -212,16 +212,27 @@ img.header {
212212
"e";
213213
}
214214

215-
#gamejam-flyer-wrapper {
216-
grid-area: a;
215+
#gamejamGrid {
216+
display: grid;
217+
grid-gap: 1em 1em;
218+
grid-template-columns: 1fr;
219+
grid-template-rows: auto;
220+
grid-template-areas:
221+
"a"
222+
"d"
223+
"c"
224+
"b"
225+
"e";
217226
}
218227

219-
#more-details-wrapper {
220-
grid-area: c;
228+
#gamejam-flyer-wrapper {
229+
grid-area: a;
230+
display: flex;
231+
align-items: center;
221232
}
222233

223234
#gamejam-details-wrapper {
224-
grid-area: d;
235+
grid-area: c;
225236
}
226237

227238
#about-gamejam-wrapper {
@@ -433,6 +444,15 @@ a:hover {
433444
"c e";
434445
}
435446

447+
#gamejamGrid {
448+
grid-template-columns: 1fr 1fr;
449+
grid-template-rows: auto auto auto auto;
450+
grid-template-areas:
451+
"b a"
452+
"c a"
453+
"e e";
454+
}
455+
436456
.navbar-toggler-icon {
437457
display: none;
438458
}

src/templates/gamejam.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends "header.html" %} {% block headertext %}{%endblock%}
22
{% block content %}
33

4-
<div id="homeGrid">
4+
<div id="gamejamGrid">
55
<div id="gamejam-flyer-wrapper" class="subcontent">
66
<a href="{{ url_for('static', filename='files/GamejamFlyer.pdf') }}">
77
<img style="width: 100%" src="{{ url_for('static', filename='images/GamejamFlyer.png') }}">
@@ -10,9 +10,9 @@
1010
<div id="about-gamejam-wrapper" class="subcontent">
1111
<h2>About the Gamejam</h2>
1212
<p>
13-
The Devcade team is hosting a week-long gamejam at <a href="https://www.rit.edu/magic/">
13+
The Devcade team is hosting a week-long gamejam at <a target="_blank" href="https://www.rit.edu/magic/">
1414
RIT's MAGIC Center</a>! The event is open to all RIT students, regardless of major,
15-
and will consist of working sessions, workshops, and seminars.
15+
and will consist of in-person working sessions, workshops, and seminars.
1616
</p>
1717
<p>
1818
You're encouraged to think outside of the box with your game! Some existing Devcade games include
@@ -21,14 +21,14 @@ <h2>About the Gamejam</h2>
2121
</p>
2222
<p>
2323
Food will be provided for all in-person work sessions. Please fill out the below interst form if you
24-
plan on attending and have dietary restrictions.
24+
plan on attending to let us know of any dietary restrictions you may have.
2525
</p>
2626
<p>
2727
There are $700 of prizes available to win, including an <i>Elgato StreamDeck+, Raspberry Pi 4Bs,
2828
a Wacom Drawing Tablet, Visa Prepaid Gift Cards, and many more</i>!
2929
</p>
3030
<p></p>
31-
<a class="btn btn-red" href="https://forms.gle/hkzAfMA8CDTy2Cn18">Interested in participating?</a>
31+
<a class="btn btn-red" target="_blank" href="https://forms.gle/hkzAfMA8CDTy2Cn18">Interested in participating?</a>
3232
</div>
3333
<div id="gamejam-details-wrapper" class="subcontent">
3434
<h2>What do I need to know before attending?</h2>
@@ -39,8 +39,8 @@ <h2>What do I need to know before attending?</h2>
3939
</p>
4040
<p>
4141
All participants are required to build their games using either the
42-
<a href="https://www.monogame.net/">Monogame</a> framework (C#) or the
43-
<a href="https://bevyengine.org/">Bevy</a> engine (Rust). We will be presenting (and recording)
42+
<a target="_blank" href="https://www.monogame.net/">Monogame</a> framework (C#) or the
43+
<a target="_blank" href="https://bevyengine.org/">Bevy</a> engine (Rust). We will be presenting (and recording)
4444
seminars on the fundamentals and build processes of both.
4545
</p>
4646
</div>

0 commit comments

Comments
 (0)