Шаблон:Main page/shared/styles.css

Материал из SS220 SS14 WIKI
.instruction-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    padding: 1.2rem 1.5rem;
    background-color: #f0f4f8; /* светлый фон */
    border-radius: 0.6rem;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.instruction-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.instruction-link {
    text-decoration: none;
    color: #0366d6;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.instruction-text {
    color: #333;
    font-size: 0.95rem;
    margin: 0;
}