mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
* start removing tailwind and rebuilding some css * add css to pybox and add class to repl * set output component visibility * replace tailwind class with single component class * add styles to css * replace classes on button * replace classes on input * replace classes in title * replace classes on list * replace classes * add new style file * add list element style * remove tailwind classes from todo example * revert link on examples files * remove tailwind config files * remove commented old code * add missing ;
28 lines
649 B
HTML
28 lines
649 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
|
|
<title>REPL</title>
|
|
|
|
<link rel="icon" type="image/png" href="favicon.png" />
|
|
<link rel="stylesheet" href="https://pyscript.net/alpha/pyscript_base.css" />
|
|
<script defer src="https://pyscript.net/alpha/pyscript.js"></script>
|
|
</head>
|
|
|
|
<py-env>
|
|
- paths:
|
|
- ./antigravity.py
|
|
</py-env>
|
|
|
|
<body>
|
|
<h1><b>pyscript REPL</b></h1>
|
|
Tip: press Shift-ENTER to evaluate a cell
|
|
<br>
|
|
<div>
|
|
<py-repl id="my-repl" auto-generate="true"> </py-repl>
|
|
</div>
|
|
</body>
|
|
</html>
|