You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
979 B

---
import '../css/font.css'
import '../css/color.css'
const {title} = Astro.props;
---
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>{title}</title>
<style>
a + a {
margin-left: 5px;
} /*i will kill you if this breaks other parts of the site*/
.footer {
position: fixed;
bottom: 0;
left: 0px;
width: 100%;
height: 100;
}
.white {
background-color: #222222;
}
.grey {
color: #ffffff;
}
.padding {
position: relative;
left: 10px;
}
.padding-right {
position: relative;
right: 10px;
}
</style>
</head>
<body>
<slot />
<div id="footer" class="white">
<footer class="white footer">
<p>
<center>
<a href="/index.html" class="grey padding">Homepage</a>
</center>
<!--<span class = "grey padding-right" style = "font-size: small; float: right; position: fixed; bottom: 50">&copy; 2020-2022 Ruthenic</span>-->
</p>
</footer>
</div>
</body>