Шаблон:таблицаролей/styles.css
| Строка 51: | Строка 51: | ||
.RoleTable-content_main { | .RoleTable-content_main { | ||
padding: 3px; | padding: 3px; | ||
display: | display: grid; | ||
grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); | |||
grid-template-columns: repeat(5, 1fr); | |||
gap: 5px; | gap: 5px; | ||
border-radius: 3px; | border-radius: 3px; | ||
} | } | ||
| Строка 60: | Строка 60: | ||
/* Вторичное содержимое */ | /* Вторичное содержимое */ | ||
.RoleTable-content_secondary { | .RoleTable-content_secondary { | ||
display: | display: grid; | ||
grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); | |||
grid-template-columns: repeat(5, 1fr); | |||
gap: 3px; | gap: 3px; | ||
margin-top: 3px; | margin-top: 3px; | ||
| Строка 68: | Строка 68: | ||
.RoleTable-content_block { | .RoleTable-content_block { | ||
border-radius: 3px; | border-radius: 3px; | ||
padding: 0 5px; | padding: 0 5px; | ||
min-width: 0; | |||
} | } | ||
| Строка 88: | Строка 87: | ||
/* Адаптация для мобильных */ | /* Адаптация для мобильных */ | ||
@media (max-width: 640px) { | @media (max-width: 640px) { | ||
.RoleTable-content_main, | |||
.RoleTable-content_secondary { | |||
grid-template-columns: 1fr; | |||
} | |||
.RoleTable-content_block { | .RoleTable-content_block { | ||
min-width: 100%; | min-width: 100%; | ||
} | } | ||
} | } | ||