2021-01-02 01:02:46 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
2021-01-02 23:45:54 +01:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
2021-01-02 01:02:46 +01:00
|
|
|
|
2021-01-02 23:45:54 +01:00
|
|
|
<title>Svelte app</title>
|
2021-01-02 01:02:46 +01:00
|
|
|
|
2021-01-02 23:45:54 +01:00
|
|
|
<link rel="icon" type="image/png" href="/favicon.png">
|
|
|
|
<script defer src="/build/bundle.js"></script>
|
2021-01-04 00:38:59 +01:00
|
|
|
|
|
|
|
<style>
|
2021-01-04 19:29:07 +01:00
|
|
|
#wrapper {
|
|
|
|
padding: 40px;
|
|
|
|
background-color: #212121;
|
|
|
|
}
|
|
|
|
|
2021-01-04 00:38:59 +01:00
|
|
|
.calculator {
|
2021-01-04 19:29:07 +01:00
|
|
|
width: 600px;
|
|
|
|
height: 200px;
|
2021-01-04 00:38:59 +01:00
|
|
|
font-family: "Hack", monospace, Consolas;
|
|
|
|
font-size: 14px;
|
2021-01-04 19:29:07 +01:00
|
|
|
padding: 5px 10px 0 10px;
|
|
|
|
background-color: #424242;
|
|
|
|
border-radius: 7px;
|
2021-01-04 00:38:59 +01:00
|
|
|
}
|
|
|
|
</style>
|
2021-01-02 23:45:54 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<noscript>Please enable JavaScript to view this application.</noscript>
|
2021-01-04 19:29:07 +01:00
|
|
|
<section id="wrapper">
|
|
|
|
<div class="calculator">
|
|
|
|
<kalk-calculator />
|
|
|
|
</div>
|
|
|
|
</section>
|
2021-01-02 23:45:54 +01:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|