Региональный математический турнир имени Т.Ф.Осиповского 2026/7 класс/Страница команды Континуум
Версия от 11:00, 4 февраля 2026; Жукова Карина Александровна (обсуждение | вклад)
|
Участие в Турнире
Задания Турнира
РЕГИОНАЛЬНЫЙ МАТЕМАТИЧЕСКИЙ ТУРНИР ```html <!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Команда Континуум</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #f5f9ff;
color: #333;
line-height: 1.6;
padding: 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
background-color: white;
border-radius: 15px;
box-shadow: 0 5px 25px rgba(0, 0, 100, 0.1);
overflow: hidden;
padding: 30px;
}
header {
text-align: center;
margin-bottom: 40px;
padding-bottom: 20px;
border-bottom: 2px solid #eaeaea;
}
h1 {
color: #2c3e50;
font-size: 2.8rem;
margin-bottom: 15px;
}
.motto {
font-size: 1.5rem;
color: #3498db;
font-style: italic;
margin-bottom: 15px;
padding: 10px;
border-radius: 8px;
background-color: #f0f7ff;
}
.subtitle {
font-size: 1.8rem;
color: #2c3e50;
margin: 25px 0;
}
.content {
display: flex;
flex-wrap: wrap;
gap: 30px;
margin-top: 20px;
}
.team-images {
flex: 1;
min-width: 300px;
}
.team-description {
flex: 1;
min-width: 300px;
background-color: #f9fbfe;
padding: 25px;
border-radius: 12px;
border-left: 5px solid #3498db;
}
.image-row {
display: flex;
justify-content: space-between;
gap: 20px;
margin-bottom: 40px;
}
.image-item {
flex: 1;
text-align: center;
min-width: 0;
}
.image-placeholder {
width: 100%;
height: 250px;
background-color: #eef5ff;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: #7f8c8d;
font-size: 1.1rem;
border: 2px dashed #bdc3c7;
margin-bottom: 15px;
}
.caption-placeholder {
height: 25px;
background-color: #f0f7ff;
border-radius: 5px;
margin-top: 10px;
}
.team-description h2 {
color: #2c3e50;
margin-bottom: 20px;
font-size: 1.8rem;
}
.team-list {
list-style-type: none;
margin-bottom: 25px;
}
.team-list li {
padding: 12px 15px;
margin-bottom: 10px;
background-color: white;
border-radius: 8px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
font-size: 1.2rem;
}
.school-info {
background-color: #e8f4fc;
padding: 20px;
border-radius: 10px;
font-size: 1.1rem;
line-height: 1.7;
}
footer {
margin-top: 40px;
text-align: center;
padding-top: 20px;
border-top: 1px solid #eaeaea;
color: #7f8c8d;
font-size: 0.9rem;
}
@media (max-width: 768px) {
.content {
flex-direction: column;
}
.image-row {
flex-direction: column;
}
h1 {
font-size: 2.2rem;
}
}
</style>
</head> <body> <header> Добро пожаловать на страницу команды Континуум!Наш девиз – стремимся к бесконечным знаниям!
Давайте знакомиться!
</header>
[<img src=svgA06428332857981733.jpg] Куделькина Диана. Ученица 7 Б [<img src=svgA7612415688165562.jpg] Прохоров Артем. Ученик 7 Б [<img src=svgA26555249749967125.jpg] Жукова Карина. Ученица 7 Б Здесь будут подписи под фотографиями участников команды Нас трое: Диана, Артем и Карина
Наша школа:Муниципальное Бюджетное Образовательное Учреждение Средняя Образовательная Школа №8 имени Героя Советского Союза Федора Герасимовича Конькова <footer> Команда "Континуум" • 2026 • Стремимся к бесконечным знаниям! </footer> <script>
document.addEventListener('DOMContentLoaded', function() {
const placeholders = document.querySelectorAll('.image-placeholder');
placeholders.forEach(placeholder => {
placeholder.addEventListener('click', function() {
this.style.backgroundColor = '#d6e7ff';
this.style.transition = 'background-color 0.3s';
setTimeout(() => {
this.style.backgroundColor = '#eef5ff';
}, 300);
});
});
const teamMembers = document.querySelectorAll('.team-list li');
teamMembers.forEach(member => {
member.addEventListener('mouseover', function() {
this.style.transform = 'translateY(-3px)';
this.style.boxShadow = '0 5px 15px rgba(0, 0, 0, 0.1)';
this.style.transition = 'all 0.3s';
});
member.addEventListener('mouseout', function() {
this.style.transform = 'translateY(0)';
this.style.boxShadow = '0 3px 10px rgba(0, 0, 0, 0.05)';
});
});
});
</script>
</body> </html> ``` |