aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/app.d.ts13
-rw-r--r--src/app.html12
-rw-r--r--src/app.scss33
-rw-r--r--src/lib/index.ts1
-rw-r--r--src/routes/+layout.ts2
-rw-r--r--src/routes/+page.svelte13
6 files changed, 74 insertions, 0 deletions
diff --git a/src/app.d.ts b/src/app.d.ts
new file mode 100644
index 0000000..743f07b
--- /dev/null
+++ b/src/app.d.ts
@@ -0,0 +1,13 @@
+// See https://kit.svelte.dev/docs/types#app
+// for information about these interfaces
+declare global {
+ namespace App {
+ // interface Error {}
+ // interface Locals {}
+ // interface PageData {}
+ // interface PageState {}
+ // interface Platform {}
+ }
+}
+
+export {};
diff --git a/src/app.html b/src/app.html
new file mode 100644
index 0000000..db4d6c5
--- /dev/null
+++ b/src/app.html
@@ -0,0 +1,12 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8" />
+ <link rel="icon" href="%sveltekit.assets%/pml68.png" />
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+ %sveltekit.head%
+ </head>
+ <body data-sveltekit-preload-data="hover">
+ <div style="display: contents">%sveltekit.body%</div>
+ </body>
+</html>
diff --git a/src/app.scss b/src/app.scss
new file mode 100644
index 0000000..d60437a
--- /dev/null
+++ b/src/app.scss
@@ -0,0 +1,33 @@
+*{
+ box-sizing: border-box;
+ margin: 0;
+ padding: 0;
+}
+
+body {
+ background-color: #1e1e2e;
+ color: #a6fbb2;
+ font-family: 'Rubik', sans-serif;
+}
+
+.ii {
+ width: 20vh;
+ height: 20vh;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%,-50%);
+ background-color: #1e1e2e;
+ border-radius: 2vh;
+ box-shadow: -12px -12px 28px #27273b73, 12px 12px 20px #12121c73;
+}
+
+.container {
+ height: calc(90dvh - 8dvh);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ overflow: hidden;
+ width: 100%;
+ z-index: 100;
+}
diff --git a/src/lib/index.ts b/src/lib/index.ts
new file mode 100644
index 0000000..856f2b6
--- /dev/null
+++ b/src/lib/index.ts
@@ -0,0 +1 @@
+// place files you want to import through the `$lib` alias in this folder.
diff --git a/src/routes/+layout.ts b/src/routes/+layout.ts
new file mode 100644
index 0000000..c5dbeb7
--- /dev/null
+++ b/src/routes/+layout.ts
@@ -0,0 +1,2 @@
+export const prerender = true
+export const trailingSlash = 'always'
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
new file mode 100644
index 0000000..f710315
--- /dev/null
+++ b/src/routes/+page.svelte
@@ -0,0 +1,13 @@
+<script lang="ts">
+ import '../app.scss'
+</script>
+
+<svelte:head>
+ <title>pml68</title>
+</svelte:head>
+
+<div class="container">
+ <div class="ii">
+ <h1>Hey boy</h1>
+ </div>
+</div>