43 lines
858 B
HTML
43 lines
858 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>How long since a message was blocked in Vencord</title>
|
||
|
<style>
|
||
|
img {
|
||
|
width: 90%;
|
||
|
margin-top: 40px;
|
||
|
}
|
||
|
body {
|
||
|
background-color: #2b2e33;
|
||
|
color: white;
|
||
|
font-family: sans-serif;
|
||
|
}
|
||
|
.container {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
}
|
||
|
#counter {
|
||
|
font-size: 4.3rem;
|
||
|
font-family: monospace;
|
||
|
margin: 0;
|
||
|
color: #5865f2;
|
||
|
}
|
||
|
h3 {
|
||
|
font-size: 1rem;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<img src="duke.png" />
|
||
|
<h1>It has been</h1>
|
||
|
<p id="counter">00:00:01</p>
|
||
|
<h3>since a message has been blocked in Vencord.</h3>
|
||
|
<p class="reason">(Low Quality Spam)</p>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|