style: footer and jumbotron text color

This commit is contained in:
Ayo Ayco 2024-09-02 00:27:53 +02:00
parent 9eb06935e6
commit 3bc3055dda
2 changed files with 13 additions and 4 deletions

View file

@ -27,16 +27,16 @@ import {VERSION} from '../consts';
width: 100%; width: 100%;
margin: 0 auto; margin: 0 auto;
text-align: center; text-align: center;
color: #333; color: rgb(var(--gray));
display: flex; display: flex;
font-size: small; font-size: small;
a { a {
color: var(--gray) color: rgb(var(--gray));
} }
a:hover { a:hover {
color: var(--accent) color: var(--accent);
} }
svg { svg {

View file

@ -1,7 +1,7 @@
--- ---
--- ---
<div><h1>Cozy</h1></div> <div><a href="/"><h1>Cozy</h1></a></div>
<style> <style>
div { div {
@ -11,5 +11,14 @@
text-transform: uppercase; text-transform: uppercase;
font-size: 5em; font-size: 5em;
} }
a {
text-decoration: none;
color: rgb(var(--black));
}
a:hover {
color: var(--accent);
}
} }
</style> </style>