remove more astro elements
This commit is contained in:
@ -1,50 +0,0 @@
|
||||
---
|
||||
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>
|
@ -1,15 +0,0 @@
|
||||
---
|
||||
import Webpage from '../layouts/Webpage.astro';
|
||||
import Motd from '../components/terminal/motd.astro';
|
||||
---
|
||||
|
||||
<Webpage>
|
||||
<main>
|
||||
<Motd/>
|
||||
<script src="../components/client/terminal.ts"></script>
|
||||
</main>
|
||||
</Webpage>
|
||||
|
||||
<style lang="scss" is:global>
|
||||
|
||||
</style>
|
Reference in New Issue
Block a user