30 lines
		
	
	
	
		
			695 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			695 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| <head>
 | |
| 	<meta charset='utf-8'>
 | |
| 	<meta name='viewport' content='width=device-width,initial-scale=1'>
 | |
| 
 | |
| 	<title>Editor úloh</title>
 | |
| 
 | |
| 	<link rel='icon' type='image/png' href='/favicon.png'>
 | |
| 	<style>
 | |
| 		html, body {
 | |
| 			height: 100%;
 | |
| 		}
 | |
| 
 | |
| 		body {
 | |
| 			color: #333;
 | |
| 			margin: 0;
 | |
| 			box-sizing: border-box;
 | |
| 			font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
 | |
| 		}
 | |
| 	</style>
 | |
| 	<link rel='stylesheet' href='/build/editor.css'>
 | |
| 
 | |
| 	<script type="module" src='/build/editor.js'></script>
 | |
| </head>
 | |
| 
 | |
| <body style="padding: 0">
 | |
| 	<div id="svelte-root" style="position: relative;"></div>
 | |
| </body>
 | |
| </html>
 |