mirror of
https://github.com/He4eT/browser-milje-2077.git
synced 2026-05-04 17:07:24 +00:00
33 lines
628 B
HTML
33 lines
628 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Milje-2077</title>
|
|
<style>
|
|
html, body {
|
|
text-align: center;
|
|
font-family: sans;
|
|
}
|
|
|
|
main {
|
|
width: 200px;
|
|
}
|
|
|
|
button {
|
|
display: block;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
margin: 8px 0;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>Milje 2077</h1>
|
|
<button id="toggleMiljeButton">Toggle the Milje</button>
|
|
<button id="openSettingsButton">Open Settings</button>
|
|
</main>
|
|
<script type="module" src="./popup.js"></script>
|
|
</body>
|
|
</html>
|