Skip to content

Commit b455518

Browse files
committed
feat: Added Janky Werewolf blurb to coding page
1 parent f0000fa commit b455518

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

assets/styles/styles.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ p:last-child {
4343
padding-bottom: 0;
4444
}
4545

46+
p a {
47+
border-bottom: 1px solid #fff;
48+
}
49+
50+
p a:hover {
51+
color: #ccc;
52+
border-color: #ccc;
53+
}
54+
4655
a.button {
4756
display: inline-block;
4857
padding: 10px 20px;
@@ -160,6 +169,9 @@ main {
160169
}
161170

162171
main > p {
172+
font-family: "Fredoka One", cursive;
173+
letter-spacing: 0.1em;
174+
font-size: 1.2em;
163175
text-align: center;
164176
padding: 20px;
165177
}

pages/coding.html

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,39 @@ <h3>ripixel.co.uk</h3>
3434
>GitHub Repo</a
3535
>
3636
</section>
37+
<section class="area">
38+
<h3>Janky Werewolf</h3>
39+
<p>
40+
A browser-based version of the Ultimate Werewolf card game
41+
</p>
42+
<p>
43+
Created during the great-lockdown of &apos;20, my friends and I adore
44+
the Ultimate Werewolf game, and would play it every evening whenever
45+
we met up. However, as meetings turned virtual, there was no way to do
46+
this! So what did we do as a bunch of CompSci nerds? Create our own
47+
web version of course!
48+
</p>
49+
<p>
50+
The front-end is made in React, utilising Websockets to talk to
51+
lambdas that handle the running of the game and tracking of game state
52+
(aka who's dead Jim). The back-end is written by
53+
<a href="https://www.mgoddard.net/">Michael Goddard</a>, the big ol'
54+
Rust nerd.
55+
</p>
56+
<a class="button" href="https://www.jankywerewolf.co.uk"
57+
>Check it out</a
58+
>
59+
<a
60+
class="button"
61+
href="https://github.com/ripixelcodes/janky-werewolf-client"
62+
>GitHub Repo (FE)</a
63+
>
64+
<a
65+
class="button"
66+
href="https://github.com/mcgoddard/janky_werewolf_backend"
67+
>GitHub Repo (BE)</a
68+
>
69+
</section>
3770
</main>
3871

3972
{footer.html}

0 commit comments

Comments
 (0)