Skip to content

Commit

Permalink
Clean up and add a custom domain
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexodia committed Aug 25, 2023
1 parent b28acd1 commit 58c359f
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 495 deletions.
Binary file added .github/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
stimm
# [stimming.club](https://stimming.club)

![Zoomer Stimming Station](.github/screenshot.png)
25 changes: 14 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/anime.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stimming Station</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/anime.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stimming Station</title>
</head>

<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>

</html>
1 change: 1 addition & 0 deletions public/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
stimming.club
19 changes: 1 addition & 18 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,12 @@
<div style="padding-top:70px">
<Video videoId="ChBg4aowzX8" name="Subway Surfer" />
</div>
<!-- <span style="padding-top:20px"> -->
<Video videoId="REuKymvrrqk" --width="1280px" name="Minecraft parkour" />
<Video videoId="REuKymvrrqk" --width="1280px" name="Minecraft parkour" />
<div style="padding-top:200px">
<Video videoId="Q4MOP8s9KyY" name="Soap cutting" />
</div>
</div>

<!--
<Grid container gutter={12}>
<Grid><Video videoId="ChBg4aowzX8" /></Grid>
<Grid><Video videoId="Q4MOP8s9KyY" /></Grid>
<Grid><Video videoId="REuKymvrrqk" /></Grid>
<Grid><Video videoId="ChBg4aowzX8" /></Grid>
<Grid><Video videoId="Q4MOP8s9KyY" /></Grid>
<Grid><Video videoId="REuKymvrrqk" /></Grid>
<Grid><Video videoId="ChBg4aowzX8" /></Grid>
<Grid><Video videoId="Q4MOP8s9KyY" /></Grid>
<Grid><Video videoId="REuKymvrrqk" /></Grid>
<Grid><Video videoId="ChBg4aowzX8" /></Grid>
<Grid><Video videoId="Q4MOP8s9KyY" /></Grid>
<Grid><Video videoId="REuKymvrrqk" /></Grid>
</Grid> -->

<style>
.grid1 {
display: flex;
Expand Down
1 change: 0 additions & 1 deletion src/assets/svelte.svg

This file was deleted.

10 changes: 0 additions & 10 deletions src/lib/Counter.svelte

This file was deleted.

4 changes: 1 addition & 3 deletions src/lib/Video.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script>
export let videoId = "";
export let name="";
export let name = "";
</script>

<div class="video">
Expand All @@ -20,15 +20,13 @@
position: relative;
overflow: hidden;
width: var(--width, 540px);
/* width: 540px; */
height: 720px;
}
.video iframe {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
/* transform: translate(-50%, -50%) scale(2.2); */
z-index: -1;
}
</style>
Loading

0 comments on commit 58c359f

Please sign in to comment.