57 lines
1.5 KiB
HTML
57 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>only_the_truth</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400&display=swap" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
background-color: #000000;
|
|
color: #00FF00;
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
.question-box {
|
|
border: 2px solid #00FF00;
|
|
padding: 20px;
|
|
text-align: center;
|
|
width: 80%;
|
|
max-width: 600px;
|
|
}
|
|
a {
|
|
color: #00BFFF; /* Blue color for the link */
|
|
text-decoration: none;
|
|
}
|
|
button {
|
|
background-color: #00FF00;
|
|
color: #000000;
|
|
border: none;
|
|
padding: 10px 20px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
margin-top: 20px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
.footer {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="question-box">
|
|
<p>{{QUESTION}}</p>
|
|
</div>
|
|
<button onclick="location.reload();">далее</button>
|
|
<div class="footer">
|
|
<a href="/about">about</a>
|
|
</div>
|
|
</body>
|
|
</html>
|