mirror of
https://github.com/zyllian/zyllian.github.io.git
synced 2025-01-18 03:32:30 -08:00
Add some basic site changes
This commit is contained in:
parent
821c94c609
commit
c3eabe3a83
3 changed files with 32 additions and 4 deletions
|
@ -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)
|
||||
|
|
|
@ -2,3 +2,22 @@ body {
|
|||
font-family: sans-serif;
|
||||
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;
|
||||
}
|
||||
|
|
|
@ -3,11 +3,18 @@
|
|||
|
||||
<head>
|
||||
{{{head}}}
|
||||
<meta name="referrer" content="no-referrer">
|
||||
<link rel="stylesheet" href="/static/site.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{{{page}}}
|
||||
<header class="main-header">
|
||||
<span class="name">Zoey</span>'s website |
|
||||
<span class="pronouns">she/her</span>
|
||||
</header>
|
||||
<main class="page">
|
||||
{{{page}}}
|
||||
</main>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
Loading…
Add table
Reference in a new issue