32 lines
999 B
HTML
32 lines
999 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Prueba CGI</title>
|
|
<link rel="icon" href="./favicon.ico" type="image/x-icon">
|
|
</head>
|
|
<body>
|
|
<script type="module" src="src/components/app-base.js" defer></script>
|
|
<script type="module" src="src/components/main-window.js" defer></script>
|
|
<script type="module" src="src/components/custom-button.js" defer></script>
|
|
<script type="module" src="src/components/item-list.js" defer></script>
|
|
<style>
|
|
html {
|
|
height: 100%;
|
|
}
|
|
body {
|
|
background: transparent linear-gradient(135deg, #A1C4FD 0%, #C2E9FB 100%) 0% 0% no-repeat padding-box;
|
|
opacity: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100%;
|
|
}
|
|
</style>
|
|
<app-base></app-base>
|
|
</body>
|
|
</html>
|
|
|