0Pricing
Design Systems & Component Libraries · Урок

Отступы, компоновка и иконки

Разработайте правила для отступов и сеточных макетов, а также создайте масштабируемый набор иконок, чтобы сохранять визуальную гармонию во всех дизайнах.

«Отступы, компоновка и иконки» — бесплатный урок Design Systems & Component Libraries на CoddyKit. Это урок 2 из 4. Ты можешь прочитать весь урок бесплатно ниже — а потом практиковать его прямо в браузере с встроенным редактором кода и ИИ-репетитором 24/7. Это часть пути обучения Design Systems & Component Libraries, и твой прогресс синхронизируется между веб-версией и приложением CoddyKit. Курс Design Systems & Component Libraries содержит 4 уроков всего.

Части этого урока еще не переведены и отображаются на английском.

Visual Harmony for Users

Ever noticed how some apps just feel "right" to use? Often, it's thanks to thoughtful design choices.

In this lesson, we'll explore three pillars of visual harmony: consistent spacing, effective layout, and clear iconography. These elements work together to create a predictable and pleasant user experience.

The Power of White Space

Spacing, also known as "white space" or "negative space," is the empty area between design elements.

  • It improves readability by separating content.
  • It guides the user's eye, creating visual hierarchy.
  • It reduces cognitive load, making interfaces feel less cluttered.

Think of it as the air around your content!

Building a Spacing System

To achieve consistency, design systems often use a base unit for all spacing values. A common choice is 8 pixels (8px) or 4 pixels (4px).

All margins, paddings, and gaps then become multiples of this base unit (e.g., 8px, 16px, 24px, 32px). This creates a predictable rhythm and ensures elements always align nicely.

/* Example using an 8px base unit */
.card {
  padding: 16px; /* 2 * 8px */
  margin-bottom: 24px; /* 3 * 8px */
}

.button {
  margin-right: 8px; /* 1 * 8px */
}

Inner vs. Outer Space

It's crucial to understand the difference between padding and margin.

  • Padding is the space inside an element, between its content and its border.
  • Margin is the space outside an element, separating it from other elements.

Using them correctly helps control how elements interact visually.

<style>
  .box {
    border: 1px solid blue;
    background-color: lightblue;
    width: 100px;
    height: 50px;
    margin: 10px; /* Space outside the box */
    padding: 20px; /* Space inside the box */
  }
</style>
<div class="box">Content</div>

Structuring Your Content

Layout refers to the arrangement of elements on a page. A good layout makes content easy to scan and understand, guiding users through the information.

It defines how different sections, components, and text blocks are positioned relative to each other, creating a clear visual hierarchy and flow.

The Grid: Your Design Backbone

Grid systems are frameworks that help designers and developers arrange content in a consistent and organized way. They typically divide a page into columns and rows.

A common example is a 12-column grid. This flexible structure allows for many different content arrangements while ensuring everything stays aligned.

<style>
  .grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* 12 equal columns */
    gap: 16px; /* Gutter between columns */
    border: 1px dashed gray;
  }
  .col-4 {
    grid-column: span 4; /* Element spans 4 columns */
    background-color: #e0e0e0;
    padding: 8px;
  }
</style>
<div class="grid-container">
  <div class="col-4">Item 1</div>
  <div class="col-4">Item 2</div>
  <div class="col-4">Item 3</div>
</div>

Layouts for Every Screen

A key aspect of modern layouts is responsiveness. This means your design should adapt and look great on any screen size, from small phones to large desktop monitors.

Grid systems and flexible spacing rules are fundamental to building responsive interfaces. They allow elements to rearrange, resize, or stack as the available screen space changes.

Icons: Universal Visual Cues

Icons are small graphical symbols used to represent actions, objects, or ideas. They are powerful tools in a design system because:

  • They convey meaning quickly, often faster than text.
  • They save screen space, especially on mobile.
  • They enhance navigation and user recognition.

A well-chosen icon can speak volumes!

Crisp Icons, Any Size

For icons to look great on any device, they need to be scalable. Two popular formats ensure this:

  • SVG (Scalable Vector Graphics): Vector-based, meaning they don't pixelate when scaled. Highly flexible.
  • Icon Fonts: Collections of icons delivered as a font. Easy to color and resize with CSS, but limited in complexity.

SVGs are generally preferred for their flexibility and quality.

<!-- Example of an SVG icon -->
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
  <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/>
</svg>

Spacing & Layout Check

Test your knowledge on how spacing and layout contribute to a good user experience.

Mastering Visual Foundations

In this lesson, we explored how spacing, layout, and iconography are critical for creating visually harmonious and user-friendly interfaces.

  • Consistent spacing creates visual rhythm.
  • Grid layouts organize content and aid responsiveness.
  • Scalable icons provide clear visual cues.

These elements form the bedrock of a strong visual language in any design system.

Часто задаваемые вопросы

Урок «Отступы, компоновка и иконки» бесплатный?

Да — полный текст урока «Отступы, компоновка и иконки» бесплатно доступен здесь в веб-версии. Чтобы практиковать его интерактивно (встроенный редактор кода и ИИ-репетитор 24/7) и разблокировать остальной курс Design Systems & Component Libraries, подпишись на CoddyKit PRO. Курс Design Systems & Component Libraries содержит 4 уроков всего.

Чему я научусь в уроке «Отступы, компоновка и иконки»?

Разработайте правила для отступов и сеточных макетов, а также создайте масштабируемый набор иконок, чтобы сохранять визуальную гармонию во всех дизайнах. Ты практикуешь Design Systems & Component Libraries с помощью реального кода, который запускаешь прямо в браузере, и ИИ-репетитор 24/7 отвечает на твои вопросы во время урока.

Нужен ли мне опыт, чтобы начать Design Systems & Component Libraries?

Предыдущий опыт не требуется. Design Systems & Component Libraries на CoddyKit структурирован для всех уровней — от новичков до продвинутых, поэтому ты можешь начать отсюда или с самого начала и учиться в своем темпе. Это урок 2 из 4.

Сколько времени занимает урок «Отступы, компоновка и иконки»?

Большинство уроков CoddyKit занимают около 5–10 минут. Каждый из них компактный и интерактивный, поэтому ты постоянно делаешь прогресс и продолжаешь с того же места в веб-версии и приложении.

Можно ли писать и запускать код в этом уроке Design Systems & Component Libraries?

Да. Каждый урок Design Systems & Component Libraries включает встроенный редактор кода, поэтому ты пишешь и запускаешь реальный код прямо в браузере и получаешь моментальную обратную связь от AI — локальная установка не требуется.

Все уроки этого курса

  1. Цветовые палитры и типографика
  2. Отступы, компоновка и иконки
  3. Создание руководства по визуальному стилю
  4. Проектирование тёмного режима и тем
← Назад к Design Systems & Component Libraries