feat: added link to main header

This commit is contained in:
Vitor Gonçalves 2023-06-18 23:56:56 -03:00
parent 77d4a3ed44
commit 33d2417511
Signed by: vitorg
GPG Key ID: B90BF113DF56EB41
3 changed files with 7 additions and 2 deletions

View File

@ -7,7 +7,7 @@
</head>
<body>
<header class="block" class="text">
<h1>~vitorg</h1>
<h1><a href="/">~vitorg</a></h1>
<nav>
<a href="/about">about me</a>
<a href="/blog">blog</a>

View File

@ -7,7 +7,7 @@
</head>
<body>
<header class="block" class="text">
<h1>~vitorg</h1>
<h1><a href="/">~vitorg</a></h1>
<nav>
<a href="/about">about me</a>
<a href="/blog">blog</a>

View File

@ -2,6 +2,7 @@
--root-background-color: #dddaec;
--default-background: #dddfff;
--accent-color: #61538d;
--default-text-color: #282828;
}
html {
@ -21,6 +22,10 @@ a {
text-decoration: none;
}
header>h1>a {
color: var(--default-text-color);
}
.block {
background-color: var(--default-background);
align-content: center;