Стилизация: различия между версиями
Перейти к навигации
Перейти к поиску
Mark (обсуждение | вклад) |
Mark (обсуждение | вклад) |
||
Строка 31: | Строка 31: | ||
display: grid; | display: grid; | ||
grid-template-columns: 1fr 1fr 1fr; | grid-template-columns: 1fr 1fr 1fr; | ||
+ | } | ||
+ | .user_posts { | ||
+ | flex-flow: row wrap; | ||
+ | gap: 4%; | ||
+ | } | ||
+ | .b-post__wrapper { | ||
+ | width: 48%; | ||
} | } | ||
</pre> | </pre> |
Версия 14:24, 24 апреля 2021
CSS
Работает для темной темы и улучшает работу для манагеров
:root.m-mode-dark.p-index-queue-index, :root.m-mode-dark { --text-color: #f6f7f8; --bg-color-header: #206a5d; --overlay-color: rgba(0,0,0,0.6); --title-color: #fefefe; --marked-color: #242529; } .l-header__menu__item { color: white; } .checkbox-item.m-pos-right-top { width: 50%; height: 50%; } .checkbox-item__inside { width: 100%; height: 100%; } .b-photos__item.m-col-4 { width: calc(10% - 2px); padding-top: calc(10% - 2px); } .container { max-width: 1800px; } .b-notifications__list { display: grid; grid-template-columns: 1fr 1fr 1fr; } .user_posts { flex-flow: row wrap; gap: 4%; } .b-post__wrapper { width: 48%; }