mirror of
https://github.com/multipleofnpm/qtbar.git
synced 2026-01-13 16:17:57 +00:00
example
This commit is contained in:
52
index.html
Normal file
52
index.html
Normal file
@@ -0,0 +1,52 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Mie - Steam Game</title>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
|
||||
background-color: #0a0e1a;
|
||||
color: #ffffff;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* Open Source Bar */
|
||||
.open-source-bar {
|
||||
background-color: #1a1f2e;
|
||||
padding: 12px 0;
|
||||
text-align: center;
|
||||
border-bottom: 2px solid #2a3f5f;
|
||||
}
|
||||
|
||||
.open-source-bar a {
|
||||
color: #66c0f4;
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
.open-source-bar a:hover {
|
||||
color: #9cc9e8;
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
<script src="https://cdn.jsdelivr.net/npm/qthtml@0.3"></script>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Open Source Bar -->
|
||||
<div class="open-source-bar">
|
||||
<p>🎮 This game is open source! Contribute to development at
|
||||
<a href="https://github.com/PlanetRenox/Mie" target="_blank">github.com/PlanetRenox/Mie</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user