Task image
Writing Task 1 — Map

IELTS 16 Test 1 — Map: City Park Development

Опишите изменения на карте городского парка за период 1980-2020 гг.

Перейти к заданию →
/* Карточка */ .task-card { background: #ffffff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); transition: transform 0.2s ease, box-shadow 0.2s ease; height: 100%; display: flex; flex-direction: column; } .task-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12); } /* Область изображения */ .task-card-image { width: 100%; height: 200px; overflow: hidden; background: #f5f5f5; } .task-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; } /* Контентная часть */ .task-card-content { padding: 20px; flex: 1; display: flex; flex-direction: column; } /* Бейдж (тип задания) */ .task-badge { display: inline-block; background: #f0f0f0; color: #666; font-size: 12px; font-weight: 500; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; letter-spacing: 0.3px; } /* Заголовок */ .task-title { font-size: 18px; font-weight: 600; color: #1a1a1a; margin: 0 0 12px 0; line-height: 1.4; } /* Описание */ .task-description { font-size: 14px; color: #666; line-height: 1.5; margin: 0 0 20px 0; flex: 1; } /* Кнопка */ .task-button { display: inline-flex; align-items: center; justify-content: center; background: #1a5cff; color: white; text-decoration: none; padding: 12px 20px; border-radius: 8px; font-size: 14px; font-weight: 500; transition: background 0.2s ease; margin-top: auto; } .task-button:hover { background: #0a3ecc; color: white; text-decoration: none; } /* Адаптивность */ @media (max-width: 768px) { .task-card-image { height: 160px; } .task-card-content { padding: 16px; } .task-title { font-size: 16px; } .task-button { padding: 10px 16px; } }
Made on
Tilda