From 9b969753a907c1d8027c81122987958f718b6f2c Mon Sep 17 00:00:00 2001 From: Fabien Freling Date: Mon, 28 Oct 2019 14:59:32 +0100 Subject: [PATCH] Update Right Coin --- css/style.css | 22 ++++++++++++++++++++-- projects/rightcoin/index.md | 16 +++++++++++++++- 2 files changed, 35 insertions(+), 3 deletions(-) diff --git a/css/style.css b/css/style.css index 42409e8..4bc3214 100644 --- a/css/style.css +++ b/css/style.css @@ -1,3 +1,7 @@ +:root { + --code-color: #eee8d5; /* gray (base2) */ +} + body { max-width: 800px; font-family: sans-serif; @@ -50,15 +54,29 @@ div#navigation a { } p.date { - background-color: #eee8d5; /* base2 */ + background-color: var(--code-color); padding: 10px 10px 10px 10px; } p.repository { - background-color: #eee8d5; /* base2 */ + background-color: var(--code-color); padding: 10px 10px 10px 10px; } +pre { + background-color: var(--code-color); + padding: 10px 10px 10px 10px; + font-size: 11pt; +} + +blockquote { + padding: 10px 10px 10px 10px; +} + +code { + background-color: var(--code-color); +} + ul.projects { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); diff --git a/projects/rightcoin/index.md b/projects/rightcoin/index.md index 5f23644..86af5c5 100644 --- a/projects/rightcoin/index.md +++ b/projects/rightcoin/index.md @@ -7,4 +7,18 @@ dev: tic-80, lua The Right Coin was our submission with [Pascal Batty](https://twitter.com/scalbatty/) for the [Ludum Dare -44](https://ldjam.com/events/ludum-dare/44) game jam. +44](https://ldjam.com/events/ludum-dare/44) game jam. The theme of the game jam +was: "your life is currency". + +We decided to keep things simple and started with a platformer with a twist. + +``` +You're dying, and medicine ain't cheap. + +Collect coins and buy medicine to extend your lifespan. Be careful of the +current market values of your coins to optimize how much you can buy with what +you have. +``` + +The game is available on +[itch.io](https://damantisshrimp.itch.io/the-right-coin).