Здесь делается вжух 🪄

лучший эпизод
Не следует, однако, забывать о том, что выбранный нами инновационный путь влечет за собой процесс внедрения и модернизации дальнейших направлений развития проекта. Задача организации, в особенности же консультация с профессионалами из IT представляет собой интересный эксперимент проверки форм воздействия. Задача организации, в особенности же курс на социально-ориентированный национальный проект способствует подготовке и реализации всесторонне сбалансированных нововведений! Значимость этих проблем настолько очевидна, что новая модель организационной деятельности обеспечивает актуальность дальнейших направлений развитая системы массового участия!
мистика, остров, США

The Block Island

Информация о пользователе

Привет, Гость! Войдите или зарегистрируйтесь.


Вы здесь » The Block Island » Happy Nation » хочу к вам


хочу к вам

Сообщений 1 страница 1 из 1

1

[hideprofile][html]<style>
@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap');

/* Основной блок */
.forum-block {
    max-width: 100%;
    width: 100%;
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #efeada;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    font-size: 10px;
    color: #52796c;
}

/* Шапка с картинкой */
.forum-header {
    height: 100px;
    background: url('https://forumstatic.ru/files/001c/bd/b1/89805.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.forum-header h1 {
    margin: 0;
    padding: 0 20px;
    text-align: center;
    font-family: 'Yeseva One', serif;
    font-size: 20px;
    color: #c3c0aa;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.forum-header h1 span {
    display: inline-block;
    background: #3b584b;
    padding: 10px 20px;
    border-radius: 20px;
    color: #c3c0aa;
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Основное содержимое – единый блок */
.forum-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 30px 20px 30px;
    min-height: 0;
    height: 100%;
    font-size: inherit;
    color: inherit;
}

.ams-block {
    flex: 1;
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 20px;
    overflow-y: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ams-block h2 {
    font-family: 'Yeseva One', serif;
    font-size: 18px;
    color: #52796c;
    margin-bottom: 12px;
}

.ams-block p {
    font-size: 12px;
    line-height: 1.6;
    color: #52796c;
    max-width: 600px;
    margin: 0 auto 8px;
}

.ams-block .contact-item {
    font-size: 12px;
    color: #52796c;
    margin: 4px 0;
}

.ams-block .contact-item strong {
    color: #3b584b;
}

/* Стили для копируемых блоков */
.copy-row {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 600px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.copy-row .copy-block {
    flex: 1;
    min-width: 200px;
    background: rgba(255,255,255,0.25);
    border: 1px solid #829b85;
    border-radius: 10px;
    padding: 10px 12px;
    box-sizing: border-box;
    font-size: 11px;
    color: #52796c;
}
.copy-block .copy-header {
    font-weight: bold;
    font-size: 13px;
    color: #3b584b;
    margin-bottom: 6px;
    text-align: center;
}
.copy-block pre {
    background: #819b85;
    color: #efeada;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 13px;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 0;
    cursor: pointer;
}
.copy-block .copy-hint {
    font-size: 9px;
    color: #829b85;
    text-align: right;
    margin-top: 4px;
    opacity: 0.7;
}

/* Адаптивность */
@media (max-width: 600px) {
    .forum-content {
        padding: 10px 15px 10px 15px;
    }
    .ams-block {
        padding: 15px;
    }
    .copy-row {
        flex-direction: column;
        align-items: center;
    }
    .copy-row .copy-block {
        min-width: 0;
        width: 100%;
    }
}
</style>

<div class="forum-block">
    <!-- Шапка -->
    <div class="forum-header">
        <h1><span>хочу к вам</span></h1>
    </div>

    <!-- Основное содержимое -->
    <div class="forum-content">
        <div class="ams-block">
            <h2>Хотите к нам?</h2>
            <p>Оставляйте здесь заявку на персонажа в свободной форме. Уверены, вас обязательно подхватят.</p>
                </div>
            </div>
        </div>
    </div>
</div>

<script>
// Функция копирования
function copyCode(id) {
    const pre = document.getElementById(id);
    const text = pre.textContent;
    if (navigator.clipboard && navigator.clipboard.writeText) {
        navigator.clipboard.writeText(text).then(() => {
            pre.style.border = '2px solid #4caf50';
            setTimeout(() => pre.style.border = 'none', 1000);
        }).catch(() => fallbackCopy(text, pre));
    } else {
        fallbackCopy(text, pre);
    }
}

function fallbackCopy(text, pre) {
    const ta = document.createElement('textarea');
    ta.value = text;
    document.body.appendChild(ta);
    ta.select();
    try {
        document.execCommand('copy');
        pre.style.border = '2px solid #4caf50';
        setTimeout(() => pre.style.border = 'none', 1000);
    } catch (e) {
        alert('Не удалось скопировать. Выделите текст вручную.');
    }
    document.body.removeChild(ta);
}
</script>
[/html]

0

Быстрый ответ

Напишите ваше сообщение и нажмите «Отправить»



Вы здесь » The Block Island » Happy Nation » хочу к вам


Рейтинг форумов | Создать форум бесплатно