From 5a586d0814b42a5ad4f06ebefe80adfef37f3e5f Mon Sep 17 00:00:00 2001 From: Picnoir Date: Thu, 10 Oct 2024 14:35:48 +0200 Subject: [PATCH] Schedule: display table borders Still broken on mobile. It overflows. --- content/schedule.md | 2 +- themes/nixcon-2024/assets/css/main.css | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/content/schedule.md b/content/schedule.md index 1792b15..752caac 100644 --- a/content/schedule.md +++ b/content/schedule.md @@ -16,7 +16,7 @@ | Lecture #1 - An Introduction to Nix (2023-2024 - Flox University) | Bryan Honof Thomas Bereknyei | Workshop/Training | | Developer environment for a web project using devenv | Domen Kožar | Workshop/Training | | Living in an experimental world | Bryan Honof | Lightning talk | -| NIxos Wiki Meetup | lassulus | Workshop/Training | +| Nixos Wiki Meetup | lassulus | Workshop/Training | | Nix State of the Union 2024 | Ron Efroni | Talk | | Why Nix is great for Software Freedom | Arnout Engelen | Lightning talk | | Enabling incremental adoption of NixOS with module contracts | Pierre Penninckx | Talk | diff --git a/themes/nixcon-2024/assets/css/main.css b/themes/nixcon-2024/assets/css/main.css index 0a83a66..c19698f 100644 --- a/themes/nixcon-2024/assets/css/main.css +++ b/themes/nixcon-2024/assets/css/main.css @@ -99,6 +99,25 @@ footer > p { text-align: center; } +table, th, td { + border: 2px solid black; + border-collapse: collapse; +} + +td { + padding-left: 1em; + text-align: center; +} + +tr > td:first-child { + text-align: left; +} + +thead { + background: black; + color: white; +} + /* Desktop/laptop/big tablets */ @media (min-width: 480px) { #header {