-
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
7 changed files
with
54 additions
and
116 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -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. |
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,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 not shown.