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
This commit is contained in:
Evie Litherland-Smith 2024-04-09 14:17:04 +01:00
parent 3c515ba2f0
commit d278f36264
2 changed files with 24 additions and 20 deletions

View file

@ -1,10 +1,9 @@
#+title: Bookmarks #+title: Bookmarks
#+author: Evie Litherland-Smith #+author: Evie Litherland-Smith
#+email: evie@xenia.me.uk #+email: evie@xenia.me.uk
#+language: en
#+options: html-link-use-abs-url:nil html-postamble:auto #+options: html-link-use-abs-url:nil html-postamble:auto
#+options: html-preamble:t html-scripts:nil html-style:t #+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_doctype: xhtml-strict
#+html_container: div #+html_container: div
#+html_content_class: content #+html_content_class: content
@ -20,25 +19,22 @@
#+infojs_opt: #+infojs_opt:
#+creator: <a href="https://www.gnu.org/software/emacs/">Emacs</a> 29.3 (<a href="https://orgmode.org">Org</a> mode 9.6.23) #+creator: <a href="https://www.gnu.org/software/emacs/">Emacs</a> 29.3 (<a href="https://orgmode.org">Org</a> mode 9.6.23)
#+latex_header: #+latex_header:
* Messaging :messaging: * Personal :personal:
** Messaging :messaging:
- [[https://web.whatsapp.com/][WhatsApp Web]] - [[https://web.whatsapp.com/][WhatsApp Web]]
- [[https://discord.com/app][Discord]] - [[https://discord.com/app][Discord]]
----- ** Server :server:
* Server :server:
- [[https://xenia.me.uk][Home Page]] - [[https://xenia.me.uk][Home Page]]
- [[https://git.xenia.me.uk][Forgejo]] - [[https://git.xenia.me.uk][Forgejo]]
----- ** Documentation :documentation:
* Documentation :documentation:
- [[https://nixos-and-flakes.thiscute.world/][NixOS and Flakes]] - [[https://nixos-and-flakes.thiscute.world/][NixOS and Flakes]]
- [[https://nix-community.github.io/home-manager/options.xhtml][Home Manager Configuration Options]] - [[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://mipmip.github.io/home-manager-option-search/][Home Manager Option Search]]
- [[https://mozilla.github.io/policy-templates/][Mozilla Policy Templates]] - [[https://mozilla.github.io/policy-templates/][Mozilla Policy Templates]]
- [[https://chromeenterprise.google/policies/][Chrome Enterprise Policy List]] - [[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/emacs-tw/awesome-emacs][Awesome Emacs]]
- [[https://github.com/hyprland-community/awesome-hyprland][Awesome Hyprland]] - [[https://github.com/hyprland-community/awesome-hyprland][Awesome Hyprland]]
-----
* Work :work: * Work :work:
- [[https://nucleus.ukaea.uk/][Nucleus]] - [[https://nucleus.ukaea.uk/][Nucleus]]
- [[https://marval.service.ukaea.uk/MSMSelfService/Index.aspx][Marval Helpdesk]] - [[https://marval.service.ukaea.uk/MSMSelfService/Index.aspx][Marval Helpdesk]]
@ -50,13 +46,13 @@
- [[https://data.jet.uk/][JET Data Services]] - [[https://data.jet.uk/][JET Data Services]]
- [[https://www.jspo.jet.uk/pages/operations/jpecreports_2023.html][JSPO]] - [[https://www.jspo.jet.uk/pages/operations/jpecreports_2023.html][JSPO]]
- [[https://dvcm.jetdata.eu/][DVCM]] - [[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: ** MAST-U :mastu:
- [[https://users.mastu.ukaea.uk/home][Users Page]] - [[https://users.mastu.ukaea.uk/home][Users Page]]
- [[https://intranet.ccfe.ac.uk/mastu-handbook][Diagnostic Handbook]] - [[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: ** OpenWiki :wiki:jdc:
- [[https://wiki.jetdata.eu/open/index.php?title=Main_Page][Main Page]] - [[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]] - [[https://wiki.jetdata.eu/open/index.php?title=Diagnostic_Coordinator_Wiki][Diagnostic Coordinator]]

View file

@ -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-2,
div.outline-text-3, div.outline-text-3,
div.outline-text-4 { div.outline-text-4 {
column-count: 1; width: 100%;
}
div.outline-3,
div.outline-4 {
column-count: 1;
} }