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:
parent
3c515ba2f0
commit
d278f36264
|
@ -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: <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:
|
||||
* 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]]
|
||||
|
|
|
@ -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%;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue