From d278f362645a685ee8c140e0508d75bfd314d2ef Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Tue, 9 Apr 2024 14:17:04 +0100 Subject: [PATCH] Fix bookmark page styling Put personal bookmarks under L1 heading personal, make headings into flex box to allow L2+ headings to bunch up and be more space efficient without disturbing the look of the lists --- system/bookmarks/default.org | 24 ++++++++++-------------- system/bookmarks/stylesheet.css | 20 ++++++++++++++------ 2 files changed, 24 insertions(+), 20 deletions(-) diff --git a/system/bookmarks/default.org b/system/bookmarks/default.org index 0f07b5d9..6614c6af 100644 --- a/system/bookmarks/default.org +++ b/system/bookmarks/default.org @@ -1,10 +1,9 @@ #+title: Bookmarks #+author: Evie Litherland-Smith #+email: evie@xenia.me.uk -#+language: en #+options: html-link-use-abs-url:nil html-postamble:auto #+options: html-preamble:t html-scripts:nil html-style:t -#+options: html5-fancy:nil tex:t +#+options: html5-fancy:nil tex:t toc:nil #+html_doctype: xhtml-strict #+html_container: div #+html_content_class: content @@ -20,25 +19,22 @@ #+infojs_opt: #+creator: Emacs 29.3 (Org mode 9.6.23) #+latex_header: -* Messaging :messaging: +* Personal :personal: +** Messaging :messaging: - [[https://web.whatsapp.com/][WhatsApp Web]] - [[https://discord.com/app][Discord]] ------ -* Server :server: +** Server :server: - [[https://xenia.me.uk][Home Page]] - [[https://git.xenia.me.uk][Forgejo]] ------ -* Documentation :documentation: +** Documentation :documentation: - [[https://nixos-and-flakes.thiscute.world/][NixOS and Flakes]] - [[https://nix-community.github.io/home-manager/options.xhtml][Home Manager Configuration Options]] - [[https://mipmip.github.io/home-manager-option-search/][Home Manager Option Search]] - [[https://mozilla.github.io/policy-templates/][Mozilla Policy Templates]] - [[https://chromeenterprise.google/policies/][Chrome Enterprise Policy List]] ------ -* Awesome Repos :awesome:git: +** Awesome Repos :awesome:git: - [[https://github.com/emacs-tw/awesome-emacs][Awesome Emacs]] - [[https://github.com/hyprland-community/awesome-hyprland][Awesome Hyprland]] ------ * Work :work: - [[https://nucleus.ukaea.uk/][Nucleus]] - [[https://marval.service.ukaea.uk/MSMSelfService/Index.aspx][Marval Helpdesk]] @@ -50,13 +46,13 @@ - [[https://data.jet.uk/][JET Data Services]] - [[https://www.jspo.jet.uk/pages/operations/jpecreports_2023.html][JSPO]] - [[https://dvcm.jetdata.eu/][DVCM]] -*** Mimics :mimics: -- [[http://webmimic.jet.uk/mc/codas/countdown][Countdown]] -- [[http://webmimic.jet.uk/DG/codas/ks5.mim.html][KS5]] -- [[http://webmimic.jet.uk/DG/codas/kt3spec.mim.html][KT3]] ** MAST-U :mastu: - [[https://users.mastu.ukaea.uk/home][Users Page]] - [[https://intranet.ccfe.ac.uk/mastu-handbook][Diagnostic Handbook]] +** Mimics :mimics: +- [[http://webmimic.jet.uk/mc/codas/countdown][Countdown]] +- [[http://webmimic.jet.uk/DG/codas/ks5.mim.html][KS5]] +- [[http://webmimic.jet.uk/DG/codas/kt3spec.mim.html][KT3]] ** OpenWiki :wiki:jdc: - [[https://wiki.jetdata.eu/open/index.php?title=Main_Page][Main Page]] - [[https://wiki.jetdata.eu/open/index.php?title=Diagnostic_Coordinator_Wiki][Diagnostic Coordinator]] diff --git a/system/bookmarks/stylesheet.css b/system/bookmarks/stylesheet.css index a4f089c8..e20bb2e5 100644 --- a/system/bookmarks/stylesheet.css +++ b/system/bookmarks/stylesheet.css @@ -1,10 +1,18 @@ +div.outline-2, +div.outline-3, +div.outline-4 { + width: 50%; + display: flex; + flex-wrap: wrap; + flex-direction: row; +} + +div.outline-2 { + width: unset; +} + div.outline-text-2, div.outline-text-3, div.outline-text-4 { - column-count: 1; -} - -div.outline-3, -div.outline-4 { - column-count: 1; + width: 100%; }