-
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.
- Loading branch information
Showing
3 changed files
with
127 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,49 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>MeowiumClient</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<link href="https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | ||
<meta content="MeowiumClient" property="og:title" /> | ||
<meta content="An Awesome Utility mod" property="og:description" /> | ||
<meta content="https://Polokalap.github.io/MeowiumClient" property="og:url" /> | ||
<meta content="#E011CA" data-react-helmet="true" name="theme-color" /> | ||
</head> | ||
<body> | ||
<header> | ||
<center> | ||
<h1>Meowium</h1> | ||
<p>A simple Utility Client.</p> | ||
</center> | ||
</header> | ||
<center> | ||
<h1>Reviews</h1> | ||
|
||
<div class="Polokalap"> | ||
<p>"This is the worst client I have ever used"</p> | ||
<p>- Polokalap, the creator of the client.</p> | ||
</div> | ||
<div class="Not_XKkrisz"> | ||
<br> | ||
<p>"In my opinion, it is a very good client, because it has some possibiblities."</p> | ||
<p>- Not_XKkrisz, professional griefer and friend.</p> | ||
</div> | ||
<h1>Images</h1> | ||
<img src="image/image.png" width="70%"> | ||
<h1>Where do I Download?</h1> | ||
<a href="https://discord.gg/DePUHvzWp3">Discord</a> | ||
<a href="https://cdn.discordapp.com/attachments/1000298683461550140/1252295122708856854/Meowium.zip?ex=6671b237&is=667060b7&hm=db9396c51f03afe4238fd3ac1d988fc9f188f07666007cb39a8cc04835cd995c&">Download</a> | ||
<footer> | ||
<p>Polokalap HUB designed by Polokalap</p> | ||
<a href="https://discord.gg/VQRfucaAWN">Discord</a> | ||
<a href="https://github.com/Polokalap">GitHub</a> | ||
<a href="https://YouTube.Com/@AlmaGangGriefs">YouTube</a> | ||
<div class="footerdiscordfix"> | ||
<p>Note, These are the developer's socials. If You Want to join the AlmaGang's Discord Click on the first Discord Link You See.</p> | ||
</div> | ||
</footer> | ||
</center> | ||
</body> | ||
</html> |
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,78 @@ | ||
.Polokalap { | ||
font-family: Fredoka; | ||
font-style: italic; | ||
transition-duration: 0.4s; | ||
} | ||
|
||
.Polokalap:hover { | ||
filter: blur(1px); | ||
} | ||
|
||
.Not_XKkrisz { | ||
font-family: Fredoka; | ||
font-style: italic; | ||
transition-duration: 0.4s; | ||
} | ||
|
||
.Not_XKkrisz:hover { | ||
filter: blur(1px); | ||
} | ||
|
||
body { | ||
background-color: #0e0d0d; | ||
} | ||
|
||
h1 { | ||
font-family: Fredoka; | ||
color: white; | ||
} | ||
|
||
p { | ||
color: white; | ||
font-family: Fredoka; | ||
font-style: italic; | ||
} | ||
|
||
h3 { | ||
text-shadow: #0e0d0d; | ||
color: white; | ||
font-family: Verdana, Geneva, Tahoma, sans-serif; | ||
} | ||
|
||
header { | ||
background-color: #161515; | ||
padding: 10px; | ||
} | ||
|
||
button { | ||
background-color: #0e0d0d; | ||
color: #ffffff; | ||
padding: 15px 20px; | ||
border: 2px solid #ffffff; | ||
transition-duration: 0.4s; | ||
} | ||
|
||
button:hover { | ||
background-color: #ffffff; | ||
color: #0e0d0d; | ||
border: 2px solid #ffffff; | ||
} | ||
|
||
a { | ||
font-family: monospace; | ||
color: #ffffff; | ||
} | ||
|
||
footer { | ||
background-color: #161515; | ||
padding: 10px; | ||
} | ||
|
||
.footerdiscordfix { | ||
transition-duration: 0.4s; | ||
filter: blur(5px); | ||
} | ||
|
||
.footerdiscordfix:hover { | ||
filter: blur(0px); | ||
} |