Update Right Coin
This commit is contained in:
parent
113d753452
commit
9b969753a9
|
@ -1,3 +1,7 @@
|
||||||
|
:root {
|
||||||
|
--code-color: #eee8d5; /* gray (base2) */
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
|
@ -50,15 +54,29 @@ div#navigation a {
|
||||||
}
|
}
|
||||||
|
|
||||||
p.date {
|
p.date {
|
||||||
background-color: #eee8d5; /* base2 */
|
background-color: var(--code-color);
|
||||||
padding: 10px 10px 10px 10px;
|
padding: 10px 10px 10px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
p.repository {
|
p.repository {
|
||||||
background-color: #eee8d5; /* base2 */
|
background-color: var(--code-color);
|
||||||
padding: 10px 10px 10px 10px;
|
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 {
|
ul.projects {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
||||||
|
|
|
@ -7,4 +7,18 @@ dev: tic-80, lua
|
||||||
|
|
||||||
The Right Coin was our submission with [Pascal
|
The Right Coin was our submission with [Pascal
|
||||||
Batty](https://twitter.com/scalbatty/) for the [Ludum Dare
|
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).
|
||||||
|
|
Loading…
Reference in a new issue