Skip to content

Commit

Permalink
Schedule: display table borders
Browse files Browse the repository at this point in the history
Still broken on mobile. It overflows.
  • Loading branch information
picnoir committed Oct 10, 2024
1 parent b88dc01 commit 5a586d0
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion content/schedule.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
19 changes: 19 additions & 0 deletions themes/nixcon-2024/assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 5a586d0

Please sign in to comment.