Skip to content

Commit da33bed

Browse files
author
geniygeniyvich
committed
Add contact section with styling and content
1 parent 153ddce commit da33bed

1 file changed

Lines changed: 58 additions & 0 deletions

File tree

index.html

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,56 @@
407407
grid-template-columns: 1fr;
408408
}
409409
}
410+
/* Контактная секция */
411+
#contact {
412+
background: var(--bg-dark); /* общий тёмный фон */
413+
padding: 60px 20px;
414+
text-align: center;
415+
border-top: 2px solid var(--primary); /* синий акцент сверху */
416+
}
417+
418+
#contact .container {
419+
max-width: 800px;
420+
margin: 0 auto;
421+
}
422+
423+
#contact .section-title {
424+
font-size: 28px;
425+
font-weight: 700;
426+
margin-bottom: 20px;
427+
background: linear-gradient(45deg, var(--primary), var(--secondary));
428+
-webkit-background-clip: text;
429+
background-clip: text;
430+
color: transparent; /* градиентный текст */
431+
text-transform: uppercase;
432+
letter-spacing: 1px;
433+
}
434+
435+
#contact .contact-content p {
436+
font-size: 18px;
437+
margin-bottom: 15px;
438+
color: var(--text-secondary); /* мягкий серый текст */
439+
}
440+
441+
/* Кнопка */
442+
#contact .btn {
443+
display: inline-block;
444+
background: var(--primary);
445+
color: #fff;
446+
padding: 12px 24px;
447+
border-radius: var(--radius);
448+
text-decoration: none;
449+
font-weight: 600;
450+
box-shadow: var(--shadow);
451+
transition: var(--transition);
452+
}
453+
454+
#contact .btn:hover {
455+
background: var(--secondary);
456+
transform: translateY(-3px);
457+
box-shadow: 0 6px 16px rgba(0,0,0,0.4);
458+
}
459+
410460
</style>
411461
</head>
412462
<body>
@@ -589,6 +639,14 @@ <h2 class="section-title">Сообщество</h2>
589639
</div>
590640
</div>
591641
</section>
642+
<section id="contact" class="contact">
643+
<div class="container">
644+
<h2 class="section-title">Стань нашим разработчиком!</h2>
645+
<div class="contact-content">
646+
<p>Свяжитесь с нами для того чтобы стать нашим разработчиком.</p>
647+
<p>Заполнить анкету: <a href="https://become.nuros.org/" class="btn">Анкета</a></p>
648+
649+
</section>
592650

593651
<footer>
594652
<div class="container">

0 commit comments

Comments
 (0)