You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.5 KiB
HTML
52 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<title>AutoHero</title>
|
|
<script src="https://telegram.org/js/telegram-web-app.js"></script>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
html, body, #root {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
background: #0a0a0a;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
-webkit-tap-highlight-color: transparent;
|
|
touch-action: none;
|
|
}
|
|
.ah-adventure-details > summary {
|
|
list-style: none;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
}
|
|
.ah-adventure-details > summary::-webkit-details-marker {
|
|
display: none;
|
|
}
|
|
.ah-adventure-summary-text {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
.ah-adventure-details > summary::after {
|
|
content: '▸';
|
|
flex-shrink: 0;
|
|
display: block;
|
|
opacity: 0.65;
|
|
transition: transform 0.12s ease;
|
|
line-height: 1.5;
|
|
}
|
|
.ah-adventure-details[open] > summary::after {
|
|
transform: rotate(90deg);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|