38 lines
1.1 KiB
HTML
38 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Minimal Light Overlay</title>
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
|
|
body {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
color: #111827;
|
|
font-family: 'Inter', sans-serif;
|
|
font-size: 16px;
|
|
margin: 0;
|
|
padding: 10px;
|
|
overflow: hidden;
|
|
}
|
|
.chat-message {
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
border-radius: 8px;
|
|
padding: 8px 12px;
|
|
margin-bottom: 8px;
|
|
backdrop-filter: blur(4px);
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
|
|
}
|
|
.username {
|
|
font-weight: 600;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Example Message -->
|
|
<div class="chat-message">
|
|
<span class="username">User:</span>
|
|
<span class="message">This is the minimal light theme.</span>
|
|
</div>
|
|
</body>
|
|
</html> |