[html]
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Форум - Статистика и цитаты</title>
<!-- Подключаем шрифт Roboto + Roboto Condensed с кириллицей -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Roboto+Condensed:wght@700&display=swap&subset=cyrillic" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: transparent;
margin: 0;
padding: 0;
color: #333;
background-image: url('https://example.com/your-background.jpg'); /* Можно добавить фоновое изображение */
background-size: cover;
}
.forum-container {
max-width: 800px;
margin: 20px auto;
background-color: transparent;
border-radius: 15px;
overflow: hidden; /* Чтобы изображение шапки соответствовало скруглению */
box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.forum-header {
width: 100%;
height: 200px;
background-image: url('https://imageup.ru/img14/5043320/iiul.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.forum-content {
padding: 20px;
background-color: transparent; /* Темный полупрозрачный фон для контраста текста */
color: #fff;
}
.stats-section {
margin-bottom: 30px;
}
.stat-item {
margin-bottom: 15px;
font-size: 16px;
background-color: rgba(139, 69, 19, 0.3);
padding: 10px;
border-radius: 5px;
border-left: 2px solid rgba(160, 82, 45, 0.7);
}
.stat-number {
font-weight: bold;
color: #8b4513;
font-size: 24px;
display: block;
margin-top: 5px;
}
.quotes-section {
border-top: 1px solid rgba(160, 82, 45,0.1);
padding-top: 20px;
}
.quotes-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 15px;
color: #a0522d;
}
.quote {
border-left: 3px solid rgba(52, 152, 219, 0.7);
padding-left: 15px;
margin: 15px 0;
font-style: italic;
background-color: rgba(255, 255, 255, 0.1);
padding: 10px;
border-radius: 0 5px 5px 0;
}
.quote-author {
font-weight: bold;
margin-bottom: 5px;
color: #a0522d;
}
</style>
</head>
<body>
<div class="forum-container">
<div class="forum-header"></div>
<div class="forum-content">
<div class="stats-section">
<div class="stat-item">
КОЛИЧЕСТВО НАПИСАННЫХ ПОСТОВ
<span class="stat-number">79</span>
</div>
<div class="stat-item">
НОВЫЕ ЖИТЕЛИ АПОКРИФА
<span class="stat-number">2</span>
</div>
<div class="stat-item">
НАЧАТО ЭПИЗОДОВ
<span class="stat-number">5</span>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
[/html]