|
132 | 132 | header.top nav ol { |
133 | 133 | display: flex; |
134 | 134 | flex-wrap: wrap; |
135 | | - gap: 0.25rem 1.1rem; |
| 135 | + /* column gap grows with viewport width: tight on narrow screens, |
| 136 | + roomier when there is plenty of horizontal space */ |
| 137 | + gap: 0.25rem clamp(0.4rem, 1.5vw, 1.7rem); |
136 | 138 | margin: 0; |
137 | 139 | padding: 0; |
138 | 140 | list-style: none; |
139 | 141 | } |
140 | 142 |
|
141 | 143 | header.top nav a { |
| 144 | + display: inline-flex; |
| 145 | + align-items: center; |
| 146 | + /* generous padding for a larger, easier touch target */ |
| 147 | + padding: 0.5rem 0.55rem; |
142 | 148 | font-size: 1.00rem; |
143 | 149 | font-weight: bold; |
144 | 150 | letter-spacing: 0.04em; |
|
656 | 662 | display: flex; |
657 | 663 | flex-wrap: wrap; |
658 | 664 | justify-content: center; |
659 | | - gap: 0.5rem 1.6rem; |
| 665 | + /* column gap grows with viewport width, like the header nav */ |
| 666 | + gap: 0.5rem clamp(0.6rem, 1.5vw, 1.8rem); |
660 | 667 | margin-bottom: 1.6rem; |
661 | 668 | font-size: 0.85rem; |
662 | 669 | font-weight: bold; |
663 | 670 | } |
664 | 671 |
|
665 | | -footer .check { |
666 | | - color: var(--green); |
667 | | - font-size: 0.95rem; |
668 | | - margin-bottom: 1rem; |
| 672 | +footer .links a { |
| 673 | + display: inline-flex; |
| 674 | + align-items: center; |
| 675 | + /* generous padding for a larger, easier touch target */ |
| 676 | + padding: 0.5rem 0.55rem; |
669 | 677 | } |
670 | 678 |
|
671 | 679 | footer .legal { color: var(--text-dim); font-size: 0.72rem; line-height: 1.7; } |
@@ -1006,7 +1014,7 @@ <h2>Talk to the collective, right here.</h2> |
1006 | 1014 | required during times of high spam activity. Be patient after asking — people reply |
1007 | 1015 | when they see it.</p> |
1008 | 1016 | <button class="connect" type="button" id="chatConnect"> |
1009 | | - <span class="play" aria-hidden="true">▶</span> Connect to the channel |
| 1017 | + <span class="play" aria-hidden="true">▶</span> Open a channel! |
1010 | 1018 | </button> |
1011 | 1019 | <p class="fine">Loads web.libera.chat in a frame and connects you to the channel.</p> |
1012 | 1020 | </div> |
@@ -1133,7 +1141,6 @@ <h2>Trusted by sysadmins, hoarders and the merely paranoid.</h2> |
1133 | 1141 | <a class="ext" href="https://github.com/borgbackup/community">Community</a> |
1134 | 1142 | <a class="ext" href="https://github.com/borgbackup/borg">Contribute</a> |
1135 | 1143 | </div> |
1136 | | - <p class="check">… and always check your backups!</p> |
1137 | 1144 | <p class="legal">BorgBackup is free software, distributed under the BSD license.<br/> |
1138 | 1145 | Terminal output and dedup figures above are illustrative.</p> |
1139 | 1146 | </footer> |
@@ -1676,15 +1683,18 @@ <h2>Trusted by sysadmins, hoarders and the merely paranoid.</h2> |
1676 | 1683 | (function terminal() { |
1677 | 1684 | const out = document.getElementById('termOut'); |
1678 | 1685 | const lines = [ |
1679 | | - { type: 'cmd', text: 'borg create --stats --compression zstd backup:repo::{now} ~/work' }, |
| 1686 | + { type: 'cmd', text: 'export BORG_REPO=/media/BACKUPHDD/borg-repo' }, |
| 1687 | + { type: 'out', text: '' }, |
| 1688 | + { type: 'cmd', text: 'borg create --stats --compression zstd backup-work ~/work' }, |
1680 | 1689 | { type: 'out', text: '------------------------------------------------------------------------------' }, |
1681 | | - { type: 'out', text: 'Archive name: 2026-06-13T03:14:07' }, |
| 1690 | + { type: 'out', text: 'Archive name: backup-work' }, |
1682 | 1691 | { type: 'out', text: 'Number of files: 173429' }, |
1683 | 1692 | { type: 'out', text: ' Original size Compressed size Deduplicated size' }, |
1684 | 1693 | { type: 'hl', text: 'This archive: 47.30 GB 21.07 GB 92.51 MB' }, |
1685 | 1694 | { type: 'out', text: 'All archives: 892.07 GB 412.86 GB 29.74 GB' }, |
1686 | 1695 | { type: 'out', text: '------------------------------------------------------------------------------' }, |
1687 | | - { type: 'cmd', text: 'borg check backup:repo', comment: ' # … and always check your backups!' }, |
| 1696 | + { type: 'out', text: '' }, |
| 1697 | + { type: 'cmd', text: 'borg check --verbose', comment: ' # … and always check your backups!' }, |
1688 | 1698 | { type: 'out', text: '' }, |
1689 | 1699 | ]; |
1690 | 1700 |
|
|
0 commit comments