forked from GithubMirrors/cardconjurer
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html5>
 | |
| <html>
 | |
| <head>
 | |
|     <script async src="data/scripts/cookies.js"></script>
 | |
|     <link rel="stylesheet" href="styles.css">
 | |
|     <meta charset="UTF-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
|     <link rel="apple-touch-icon" sizes="180x180" href="data/site/favicons/apple-touch-icon.png">
 | |
|     <link rel="icon" type="image/png" sizes="32x32" href="data/site/favicons/favicon-32x32.png">
 | |
|     <link rel="icon" type="image/png" sizes="16x16" href="data/site/favicons/favicon-16x16.png">
 | |
|     <link rel="manifest" href="data/site/favicons/site.webmanifest">
 | |
| </head>
 | |
| <body>
 | |
|     <title>CC - Phyrexian</title>
 | |
|     <link rel="stylesheet" href="askScryfallStyles.css">
 | |
|     <div>
 | |
|         <div class="title darkLayer">
 | |
|             Phyrexian "Translator"
 | |
|         </div>
 | |
|         <div class="layer slideFromRight">
 | |
|             <div class='splitGrid'>
 | |
|                 <div>
 | |
|                     Input the text you would like to be "translated"
 | |
|                 	<textarea id='inputText' oninput='generatePhyrexianText()'></textarea>
 | |
|                 </div>
 | |
|                 <div>
 | |
|                     Then copy the "translated" text from here
 | |
|                 	<textarea id='outputText' style='font-family: "phyrexian";' disabled></textarea>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </div>
 | |
|         <div class="layer darkLayer slideFromLeft">
 | |
|             <div>
 | |
|                 This is not a real translator. It simply detects paragraphs and sentences, then randomly converts characters to phyrexian. Once you have the copied text, drop it into the <a href='creator.html'>Card Creator</a> following {fontphyrexian} wherever you'd like!
 | |
|             </div>
 | |
|         </div>
 | |
|         <div class="layer slideFromRight">
 | |
|             <div>
 | |
|                 All will be compleat.
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
|     <script defer src="data/site/other/phyrexian/phyrexian.js"></script>
 | |
| </body>
 | |
| <footer id='footer'>
 | |
|     <script async src='data/scripts/footer.js'></script>
 | |
|     <script defer src="data/scripts/animations.js"></script>
 | |
| </footer>
 | |
| <html>
 | 
