Work in progress nethack dungeon generator background for the nethack page

This commit is contained in:
Eryn Wells 2023-01-29 08:05:54 -08:00
parent d524a7dd9e
commit 186929921b
5 changed files with 342 additions and 0 deletions

View file

@ -2,6 +2,7 @@
title: "Nethack"
description: In which I play way too much of a silly command line Roguelike game.
date: 2022-04-13T08:43:46-07:00
type: nethack
---
Every so often I get hooked on [this game][nethack]. It's a command line

View file

@ -1,80 +0,0 @@
/* Eryn Wells <eryn@erynwells.me> */
:root {
--logentry-background-color: var(--tag-background-color);
--logentry-foreground-color: var(--tag-text-color);
}
.logfile {
margin-block-start: 0;
margin-inline-start: 0;
padding-inline-start: 0;
}
.logfile > li {
align-items: first baseline;
color: var(--logentry-foreground-color);
background-color: var(--logentry-background-color);
border-radius: 6px;
display: grid;
grid-template-columns: 32px auto auto;
row-gap: 1rem;
margin-block-start: 2rem;
margin-inline-start: 0;
padding: 3rem;
}
.logfile > li > .date {
grid-column-start: 2;
grid-row-start: 1;
}
.logfile > li > h4.date {
margin: 0;
padding: 0;
}
.logfile > li > .character-descriptor {
color: #aaa;
font-size: 1.5rem;
font-weight: 700;
grid-column-start: 3;
grid-row-start: 1;
text-align: right;
text-transform: uppercase;
}
.logfile > li > p {
grid-column-start: 2;
grid-column-end: 4;
grid-row-start: 2;
margin: 0;
}
.logfile > li > table.stats {
border: 0;
grid-column-start: 2;
grid-column-end: 4;
grid-row-start: 3;
margin-block-end: 0;
width: 100%;
-webkit-border-horizontal-spacing: 0;
-webkit-border-vertical-spacing: 0;
}
.logfile > li > table.stats > tbody > tr > td {
border: 0;
color: #aaa;
font-size: 1.5rem;
font-weight: 700;
padding: 0;
text-transform: uppercase;
vertical-align: bottom;
}
.logfile > li > table.stats > tbody > tr > td.score,
.logfile > li > table.stats > tbody > tr > td.hp,
.logfile > li > table.stats > tbody > tr > td.level {
width: 16rem;
text-align: right;
}