diff options
| -rw-r--r-- | www/html/index.html | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/www/html/index.html b/www/html/index.html index 15e0d0f..4a89593 100644 --- a/www/html/index.html +++ b/www/html/index.html @@ -37,6 +37,12 @@ pointer-events: none; z-index: -1; } + a { + color: var(--primary); + } + a:hover, a:focus-visible { + background-color: var(--background-primary); + } td > table { background-color: var(--background-secondary); } @@ -52,6 +58,10 @@ justify-content: center; list-style: none; } + footer nav a { + background-color: var(--background-secondary); + padding: 0.5em; + } </style> </head> <body> @@ -138,7 +148,7 @@ <table border="0" cellpadding="0" cellspacing="0"> <tr> <td valign="middle"> - <a href="https://www.cafe-rennkoppel.de"> + <a style="display: inline-block;" href="https://www.cafe-rennkoppel.de"> <img alt="Café Rennkoppel" src="img/Cafe-Rennkoppel.png" width="99" height="99"> </a> </td> |
