gmod loading
This commit is contained in:
parent
7535de678a
commit
7d393a47c8
9 changed files with 60 additions and 2 deletions
3
dist/404.html
vendored
3
dist/404.html
vendored
|
@ -7,7 +7,8 @@
|
|||
<link rel="icon" type="image/svg+xml" href="/assets/branding/obo-icon.png">
|
||||
<meta name="generator" content="Astro v2.10.7">
|
||||
<title>Error 404</title>
|
||||
<link rel="stylesheet" href="/_astro/404.20e28c3c.css" /></head>
|
||||
<link rel="stylesheet" href="/_astro/404.0278d6dc.css" />
|
||||
<link rel="stylesheet" href="/_astro/404.3900936b.css" /></head>
|
||||
<body>
|
||||
|
||||
<main class="astro-ZETDM5MD">
|
||||
|
|
1
dist/_astro/404.0278d6dc.css
vendored
Normal file
1
dist/_astro/404.0278d6dc.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
:root{--accent: 136, 58, 234;--accent-light: 224, 204, 250;--accent-dark: 49, 10, 101;--accent-gradient: linear-gradient(45deg, rgb(var(--accent)), rgb(var(--accent-light)) 30%, white 60%)}html{font-family:system-ui,sans-serif;background:#13151A;background-size:224px}
|
1
dist/_astro/404.20e28c3c.css
vendored
1
dist/_astro/404.20e28c3c.css
vendored
|
@ -1 +0,0 @@
|
|||
:root{--accent: 136, 58, 234;--accent-light: 224, 204, 250;--accent-dark: 49, 10, 101;--accent-gradient: linear-gradient(45deg, rgb(var(--accent)), rgb(var(--accent-light)) 30%, white 60%)}html{font-family:system-ui,sans-serif;background:#13151A;background-size:224px}:where(.astro-ZETDM5MD){margin:0;padding:0;box-sizing:border-box;-webkit-filter:grayscale(100%);filter:grayscale(100%)}body{width:100%;height:100vh;background-image:url(/assets/404/crt.gif);-webkit-filter:grayscale(100%);filter:grayscale(100%)}marquee:where(.astro-ZETDM5MD){height:100vh}
|
1
dist/_astro/404.3900936b.css
vendored
Normal file
1
dist/_astro/404.3900936b.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
:where(.astro-ZETDM5MD){margin:0;padding:0;box-sizing:border-box;-webkit-filter:grayscale(100%);filter:grayscale(100%)}body{width:100%;height:100vh;background-image:url(/assets/404/crt.gif);-webkit-filter:grayscale(100%);filter:grayscale(100%)}marquee:where(.astro-ZETDM5MD){height:100vh}
|
1
dist/_astro/gmod_loading.b76a3cf0.css
vendored
Normal file
1
dist/_astro/gmod_loading.b76a3cf0.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
:where(.astro-W5LHOOVP){margin:0;padding:0;box-sizing:border-box;-webkit-filter:grayscale(100%);filter:grayscale(100%)}body{width:100%;height:100vh;background-image:url(/assets/404/crt.gif);-webkit-filter:grayscale(100%);filter:grayscale(100%)}marquee:where(.astro-W5LHOOVP){height:100vh}
|
BIN
dist/assets/branding/gmod_logo.png
vendored
Normal file
BIN
dist/assets/branding/gmod_logo.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
22
dist/export/gmod_loading/index.html
vendored
Normal file
22
dist/export/gmod_loading/index.html
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="description" content="Astro description">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="icon" type="image/svg+xml" href="/assets/branding/obo-icon.png">
|
||||
<meta name="generator" content="Astro v2.10.7">
|
||||
<title>Loading...</title>
|
||||
<link rel="stylesheet" href="/_astro/404.0278d6dc.css" />
|
||||
<link rel="stylesheet" href="/_astro/gmod_loading.b76a3cf0.css" /></head>
|
||||
<body>
|
||||
|
||||
<main class="astro-W5LHOOVP">
|
||||
<marquee behavior="alternate" scrollamount="30" class="astro-W5LHOOVP">
|
||||
<marquee behavior="alternate" scrollamount="30" direction="down" class="astro-W5LHOOVP">
|
||||
<img src="/assets/branding/gmod_logo.png" class="astro-W5LHOOVP">
|
||||
</marquee>
|
||||
</marquee>
|
||||
</main>
|
||||
|
||||
</body></html>
|
BIN
public/assets/branding/gmod_logo.png
Normal file
BIN
public/assets/branding/gmod_logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
33
src/pages/export/gmod_loading.astro
Normal file
33
src/pages/export/gmod_loading.astro
Normal file
|
@ -0,0 +1,33 @@
|
|||
---
|
||||
import Layout from '../../layouts/err404.astro';
|
||||
import Card from '../../components/Card.astro';
|
||||
---
|
||||
|
||||
<Layout title="Loading...">
|
||||
<main>
|
||||
<marquee behavior="alternate" scrollamount="30">
|
||||
<marquee behavior="alternate" scrollamount="30" direction="down">
|
||||
<img src="/assets/branding/gmod_logo.png">
|
||||
</marquee>
|
||||
</marquee>
|
||||
</main>
|
||||
</Layout>
|
||||
<style>
|
||||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
-webkit-filter: grayscale(100%);
|
||||
filter: grayscale(100%);
|
||||
}
|
||||
body{
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
background-image: url('/assets/404/crt.gif');
|
||||
-webkit-filter: grayscale(100%);
|
||||
filter: grayscale(100%);
|
||||
}
|
||||
marquee{
|
||||
height: 100vh;
|
||||
}
|
||||
</style>
|
Loading…
Reference in a new issue