-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move to slash | Fix styling | Update packages | Work a bit on hub | A…
…dd more guild features
- Loading branch information
1 parent
0441dda
commit 02e28f9
Showing
20 changed files
with
560 additions
and
473 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Hub - Fsh bot</title> | ||
<link rel="stylesheet" href="/fsh/media/style.css"> | ||
<style> | ||
body { | ||
text-align: center; | ||
} | ||
.grid { | ||
display: grid; | ||
grid-gap: 10px; | ||
width: fit-content; | ||
margin: 20px auto 0px; | ||
grid-auto-rows: minmax(100px, auto); | ||
grid-template-columns: repeat(3, 25vw); | ||
} | ||
.grid div { | ||
padding: 5px; | ||
transition: 500ms; | ||
border-radius: 0.75rem; | ||
background-color: var(--bg-2); | ||
} | ||
.grid a { | ||
width: 100%; | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
color: var(--text-1); | ||
text-decoration: none; | ||
} | ||
.grid div:has(p) { | ||
cursor: pointer; | ||
} | ||
.grid div:hover { | ||
border: 1px var(--text-1) solid; | ||
background-color: var(--bg-3); | ||
transform: translateY(5px); | ||
} | ||
svg { | ||
height: 50px; | ||
} | ||
</style> | ||
<script type="module" src="/main.js"></script> | ||
</head> | ||
<body> | ||
<h1>Hub</h1> | ||
<p>Select what you will be doing</p> | ||
<div class="grid"> | ||
<div> | ||
<a href="./music"> | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M499.1 6.3c8.1 6 12.9 15.6 12.9 25.7v72V368c0 44.2-43 80-96 80s-96-35.8-96-80s43-80 96-80c11.2 0 22 1.6 32 4.6V147L192 223.8V432c0 44.2-43 80-96 80s-96-35.8-96-80s43-80 96-80c11.2 0 22 1.6 32 4.6V200 128c0-14.1 9.3-26.6 22.8-30.7l320-96c9.7-2.9 20.2-1.1 28.3 5z"/></svg> | ||
<p>Music</p> | ||
</a> | ||
</div> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
</div> | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.