appwrite/tests/resources/sites/static-themed/index.html

75 lines
1.6 KiB
HTML
Raw Normal View History

2025-02-20 12:44:31 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Themed website</title>
<style>
2025-11-21 14:35:31 +00:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
2025-02-20 12:44:31 +00:00
/* Light theme */
2025-11-21 14:35:31 +00:00
:root {
2025-11-25 07:52:19 +00:00
--bg: #ffffff;
--text: #1a1a1a;
2025-11-21 14:35:31 +00:00
--accent: #fd366e;
2025-02-20 12:44:31 +00:00
}
2025-11-21 14:35:31 +00:00
2025-02-20 12:44:31 +00:00
/* Dark theme */
@media (prefers-color-scheme: dark) {
2025-11-21 14:35:31 +00:00
:root {
2025-11-25 07:52:19 +00:00
--bg: #1a1a1a;
--text: #ffffff;
2025-11-21 14:35:31 +00:00
--accent: #fd366e;
2025-02-20 12:44:31 +00:00
}
}
2025-11-21 14:35:31 +00:00
body {
2025-11-25 07:52:19 +00:00
font-family: system-ui, sans-serif;
background-color: var(--bg);
color: var(--text);
2025-11-21 14:35:31 +00:00
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
2025-11-25 07:52:19 +00:00
.content {
max-width: 500px;
2025-11-21 14:35:31 +00:00
text-align: center;
}
h1 {
2025-11-25 07:52:19 +00:00
font-size: 2rem;
2025-11-21 14:35:31 +00:00
margin-bottom: 1rem;
}
2025-11-25 07:52:19 +00:00
p {
font-size: 1rem;
margin-bottom: 1.5rem;
opacity: 0.8;
2025-11-21 14:35:31 +00:00
}
.badge {
display: inline-block;
2025-11-25 07:52:19 +00:00
padding: 0.5rem 1rem;
2025-11-21 14:35:31 +00:00
background-color: var(--accent);
color: white;
2025-11-25 07:52:19 +00:00
border-radius: 4px;
2025-11-21 14:35:31 +00:00
font-size: 0.875rem;
}
2025-02-20 12:44:31 +00:00
</style>
</head>
2025-11-21 14:35:31 +00:00
<body>
2025-11-25 07:52:19 +00:00
<div class="content">
2025-11-21 14:35:31 +00:00
<h1>Themed website</h1>
2025-11-25 07:52:19 +00:00
<p>Adaptive light and dark mode showcase</p>
<div class="badge">Appwrite Sites</div>
2025-11-21 14:35:31 +00:00
</div>
</body>
2025-02-20 12:44:31 +00:00
</html>