51 lines
896 B
Plaintext
51 lines
896 B
Plaintext
---
|
|
import Metas from "../components/metas.astro"
|
|
import Header from "../components/header.astro"
|
|
import Footer from "../components/footer.astro"
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<Metas/>
|
|
<link rel="icon" type="image/png" href="/logo.png"/>
|
|
<title>rhpidfyre.io</title>
|
|
</head>
|
|
<body>
|
|
<Header/>
|
|
<slot/>
|
|
<Footer/>
|
|
</body>
|
|
</html>
|
|
|
|
<style is:global lang="scss">
|
|
@forward "../scss/fonts";
|
|
|
|
:root {
|
|
color-scheme: dark;
|
|
|
|
--body-background-color: rgb(0,0,0);
|
|
--hf-button-hover-color: rgb(255,255,255);
|
|
}
|
|
::selection {
|
|
background-color: rgb(255,255,255);
|
|
color: rgb(0,0,0);
|
|
}
|
|
|
|
body {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
background-color: var(--body-background-color);
|
|
}
|
|
button {
|
|
background-color: transparent;
|
|
border: 0;
|
|
}
|
|
a {
|
|
color: white;
|
|
cursor: unset;
|
|
&:hover, &:active, &:link { text-decoration: none; }
|
|
}
|
|
</style>
|