ihrz
Version:
iHrz in ts!
149 lines (133 loc) • 3.89 kB
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.5">
<title>User Overview</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #1e1e1e;
color: #cfcfcf;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background: #2c2f33;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
max-width: 600px;
width: 100%;
color: #ffffff;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.header h1 {
font-size: 22px;
margin: 0;
color: #ffffff;
}
.section {
margin-bottom: 20px;
}
.section h2 {
font-size: 16px;
margin-bottom: 10px;
color: #cfcfcf;
}
.section ul {
list-style: none;
padding: 0;
}
.section ul li {
font-size: 14px;
margin-bottom: 5px;
color: #cfcfcf;
display: flex;
justify-content: space-between;
}
.section ul li span {
color: #b8b8b8;
}
.stats-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.stat-block {
background-color: #23272a;
padding: 15px;
border-radius: 8px;
text-align: center;
}
.stat-block h3 {
margin: 0;
font-size: 20px;
color: #4A90E2;
}
.stat-block p {
margin: 5px 0 0;
font-size: 16px;
color: #cfcfcf;
}
footer p {
text-align: center;
font-size: 12px;
color: #aaa;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>{author_username}'s Messages Stats</h1>
</div>
<section class="section">
<h2>User Lookback</h2>
<div class="stats-grid">
<div class="stat-block">
<h3>Messages</h3>
<p>1d: {message_daily} messages</p>
<p>7d: {message_weekly} messages</p>
<p>30d: {message_monthly} messages</p>
</div>
<div class="stat-block">
<h3>Voice Activity</h3>
<p>1d: {voice_daily} minutes</p>
<p>7d: {voice_weekly} minutes</p>
<p>30d: {voice_monthly} minutes</p>
</div>
</div>
</section>
<section class="section">
<h2>Top Message Channels</h2>
<ul>
<li>#{messages_top1} <span>{messages_top1_2} messages</span></li>
<li>#{messages_top2} <span>{messages_top2_2} messages</span></li>
<li>#{messages_top3} <span>{messages_top3_2} messages</span></li>
</ul>
</section>
<section class="section">
<h2>Top Voice Channels</h2>
<ul>
<li>#{voice_top1} <span>85 messages</span></li>
<li>#{voice_top2} <span>64 messages</span></li>
<li>#{voice_top3} <span>50 messages</span></li>
</ul>
</section>
<footer>
<p>iHorizon - {guild_name}</p>
</footer>
</div>
</body>
</html>