Skip to content

Commit

Permalink
stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukiiy committed Jun 20, 2024
1 parent 637f24f commit 20d56f4
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 116 deletions.
1 change: 0 additions & 1 deletion .gitignore

This file was deleted.

109 changes: 0 additions & 109 deletions LICENSE

This file was deleted.

8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# W8ty
# W8ty (GH-Pages)

A W.I.P simple retro styled font. Inspired by Minecraft Dungeons and retro games.

Check out **some** characters:

![A display of some characters included.](someCharacters.png)
The pages src.
Binary file added W8ty.otf
Binary file not shown.
Binary file added fav.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
52 changes: 52 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="fav.png" type="image/x-icon">
<title>W8ty Font</title>
</head>
<style>
@font-face {
font-family: 'W8ty';
src: url("W8ty.otf");
}
body {
color-scheme: light;
color: #fff;
background-color: #344676;
font-family: 'W8ty', serif;
font-weight: normal;
}
main {
width: min(50ch, 100% - 2rem);
margin: 20px auto;
}
h1, h2, h3, h4, h5, h6, small {margin: 2px;}
h1, h2 {-webkit-text-stroke: 1rem #0004;}
textarea {
border: transparent;
background: #3b548d;
border-radius: 0.5rem;
resize: none;
width: 97%;
height: 10rem;
color: inherit;
font-family: 'W8ty';
padding: 5px;
margin: 0 auto;
}
</style>
<body>
<main>
<h1>W8TY</h1>
<p>
A cool retro styled font.<br>
Inspired by some retro games and also Minecraft Dungeons.<br>
You can download the latest version <a href="https://github.com/Lukiiy/W8ty">here</a>
</p>
<textarea placeholder="Try it out!"></textarea>
<p>by Lukiiy</p>
</main>
</body>
</html>
Binary file removed someCharacters.png
Binary file not shown.

0 comments on commit 20d56f4

Please sign in to comment.