-
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
13 changed files
with
229 additions
and
59 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -166,3 +166,5 @@ tags | |
[._]*.un~ | ||
|
||
# End of https://www.toptal.com/developers/gitignore/api/node,vim | ||
|
||
.DS_Store |
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,37 +1,18 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Alla mot alla generator</title> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.3/gh-fork-ribbon.min.css" | ||
/> | ||
<style> | ||
.github-fork-ribbon:before { | ||
background-color: #000; | ||
} | ||
input[type="text"] { | ||
width: 1296px; | ||
padding: 12px 20px; | ||
margin: 8px 0; | ||
box-sizing: border-box; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<a | ||
class="github-fork-ribbon" | ||
href="https://github.com/datahax/amagen" | ||
data-ribbon="Fork me on GitHub" | ||
title="Fork me on GitHub" | ||
>Fork me on GitHub</a | ||
> | ||
<p> | ||
<input type="text" name="text" id="text" placeholder="Enter text..." /> | ||
</p> | ||
<canvas id="amaBoard" width="1296" height="714"></canvas> | ||
<script src="public/image.js"></script> | ||
</body> | ||
</html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Alla mot alla generator</title> | ||
<link rel="stylesheet" href="/static/style.css" /> | ||
</head> | ||
|
||
<body> | ||
<div class="page"> | ||
<input type="text" name="text" id="text" placeholder="Enter text..." /> | ||
<canvas id="amaBoard" width="1200" height="675"></canvas> | ||
</div> | ||
<script src="image.js"></script> | ||
</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
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,29 @@ | ||
/* poppins-devanagari-700-normal */ | ||
@font-face { | ||
font-family: 'Poppins'; | ||
font-style: normal; | ||
font-display: block; | ||
font-weight: 700; | ||
src: url(./poppins-devanagari-700-normal.woff2) format('woff2'), url(./poppins-devanagari-700-normal.woff) format('woff'); | ||
unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FF; | ||
} | ||
|
||
/* poppins-latin-ext-700-normal */ | ||
@font-face { | ||
font-family: 'Poppins'; | ||
font-style: normal; | ||
font-display: block; | ||
font-weight: 700; | ||
src: url(./poppins-latin-ext-700-normal.woff2) format('woff2'), url(./poppins-latin-ext-700-normal.woff) format('woff'); | ||
unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; | ||
} | ||
|
||
/* poppins-latin-700-normal */ | ||
@font-face { | ||
font-family: 'Poppins'; | ||
font-style: normal; | ||
font-display: block; | ||
font-weight: 700; | ||
src: url(./poppins-latin-700-normal.woff2) format('woff2'), url(./poppins-latin-700-normal.woff) format('woff'); | ||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | ||
} |
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,12 @@ | ||
@import url('poppins.css'); | ||
|
||
body { | ||
font-family: sans-serif; | ||
} | ||
|
||
input[type="text"] { | ||
width: 1200px; | ||
padding: 12px 20px; | ||
margin: 8px 0; | ||
box-sizing: border-box; | ||
} |