Add some basic site changes

This commit is contained in:
Zoey 2021-08-19 12:52:42 -07:00
parent 821c94c609
commit c3eabe3a83
3 changed files with 32 additions and 4 deletions

View file

@ -1,5 +1,7 @@
# Welcome # Zoey's Website
Welcome to the site! Welcome to the site! It's still very much a work in progress.
Testing a change. Links:
- [GitHub](https://github.com/Zoeycode)

View file

@ -2,3 +2,22 @@ body {
font-family: sans-serif; font-family: sans-serif;
margin: 0; margin: 0;
} }
header.main-header {
display: block;
padding: 4px;
background-color: #0ad;
}
a {
text-decoration: none;
}
a:hover,
a:focus {
text-decoration: underline;
}
main.page {
margin: 8px;
}

View file

@ -3,11 +3,18 @@
<head> <head>
{{{head}}} {{{head}}}
<meta name="referrer" content="no-referrer">
<link rel="stylesheet" href="/static/site.css"> <link rel="stylesheet" href="/static/site.css">
</head> </head>
<body> <body>
<header class="main-header">
<span class="name">Zoey</span>'s website |
<span class="pronouns">she/her</span>
</header>
<main class="page">
{{{page}}} {{{page}}}
</main>
</body> </body>
</html> </html>