diff options
author | gbmor <ahriman@falte.red> | 2020-05-13 23:04:52 -0400 |
---|---|---|
committer | gbmor <ahriman@falte.red> | 2020-05-13 23:04:52 -0400 |
commit | 4628ffd4ba40b9e4c9c19dbccbd23ca938a18703 (patch) | |
tree | 649a9c593fc432324fe65e3c95fbc602b67b5685 | |
parent | b21023d54bfa74198edb0edd35af85fd7c7b8731 (diff) | |
download | site-4628ffd4ba40b9e4c9c19dbccbd23ca938a18703.tar.gz |
added dcss link to navigation. set min-width for <td> in navigation
to more evenly size nav buttons.
-rw-r--r-- | header.html | 9 | ||||
-rw-r--r-- | tilde.css | 3 |
2 files changed, 8 insertions, 4 deletions
diff --git a/header.html b/header.html index 2647046..18214aa 100644 --- a/header.html +++ b/header.html @@ -24,15 +24,18 @@ <a href="https://git.tilde.institute/">Git</a> </td> <td> - <a href="/stats">Stats</a> - </td> - <td> <a href="https://twtxt.tilde.institute">twtxt</a> </td> + <td> + <a href="https://crawl.tildeverse.org">crawl/dcss</a> + </td> <td> <a rel="me" href="https://tilde.zone/@tildeinstitute">Fediverse</a> </td> <td> + <a href="/stats">Stats</a> + </td> + <td> <a href="/coc">CoC</a> </td> <td> diff --git a/tilde.css b/tilde.css index 1227aaf..1c1ccc5 100644 --- a/tilde.css +++ b/tilde.css @@ -27,7 +27,7 @@ body { vertical-align: center; margin: 5px; height: 1.5em; - background-color: #0B3861 + background-color: #0B3861; } #navigation td:hover { background-color: #045fb4; @@ -36,6 +36,7 @@ body { display: block; width: 100%; text-decoration: none; + min-width: 3.5rem; } #navigation td a:hover { text-decoration: none; |