Шаблон:CategoryMenu/styles.css
Материал из Space Station 14 Вики
/* Весь блок */ .category-menu { display: grid; grid-template-columns: 1fr 5fr; grid-template-rows: auto auto; gap: 10px; border: 2px solid #494959; border-radius: 0.3em; background-color: #34343f; overflow: hidden; padding: 12px 10px; box-sizing: border-box; color: #e1e1e1; } .category-menu p { color: #e1e1e1; } /* Категории */ .category-switcher { grid-row: 1; display: flex; justify-content: space-between; align-items: center; background: #2b2b35; border-bottom: 3px solid #202029; border-radius: 0.2em; padding: 8px 12px; font-family: "noto sans"; } /* Стрелки */ .arrow { cursor: pointer; color: #c3c3c9; font-size: 1.4em; } .arrow.disabled { color: #7d7d81; cursor: default; } .categories { position: relative; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; overflow: hidden; } .categories div { display: none; font-weight: bold; font-size: 1em; } .categories div.active { display: block; /* Отображаем активную категорию */ } /* Меню */ .menu-container { grid-column: 1; grid-row: 2; height: 450px; overflow-y: auto; box-sizing: border-box; padding: 0 2px 4px 2px; } .menu div { cursor: pointer; padding: 14px 12px; background-color: #4d4d5d; color: #e7e6e6; border-radius: 0.4em; font-size: 15px; font-family: 'noto sans'; font-weight: bold; box-sizing: border-box; transition: all 0.05s; box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.3); } .menu div:not(:last-child) { margin-bottom: 8px; } .menu div:hover { background-color: #525263; } .menu div.active { border-left: 5px solid #6d6d7f; } .menu { display: none; /* Скрываем меню, если категория не выбрана */ } .menu.active { display: block; /* Отображаем активное меню */ } .content { grid-column: 2; grid-row: 1 / 3; height: 515px; padding: 12px; width: 100%; background-color: #4b4b59; border-radius: 0.3em; min-height: 400px; overflow: auto; box-sizing: border-box; box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5); overflow-x: hidden; } .content > div { display: none; } .content .active { display: block; } .menu-toggle { display: none; } @media (max-width: 900px) { .category-menu { grid-template-columns: 1fr 1fr; } /* Кнопка отображения меню */ .menu-toggle { position: absolute; display: block; top: 70px; left: 15px; padding: 6px 10px; background-color: #323241; z-index: 2; cursor: pointer; border-radius: 0.2em; font-size: 1em; font-weight: bold; color: #d0d0d0; margin: 4px; box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.7); transition: left 0.3s; } .menu-toggle.active { left: 72%; } .menu div:not(:last-child) { margin-bottom: 6px; } .category-switcher { grid-column: 1 / 3; padding: 10px 12px; } .categories div { font-size: 0.9em; } .arrow { font-size: 1.1em; } .category-menu { position: relative; padding: 12px 10px; overflow: hidden; box-sizing: border-box; } .menu-container { grid-column: 1 / 3; grid-row: 2; max-height: 350px; position: absolute; top: 8px; left: 8px; width: calc(70%); transform: translateX(-200%); height: max-content; border: 2px solid #494959; padding: 10px; border-radius: 0.5em; box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.8); z-index: 1; transition: transform 0.3s; } .menu div { padding: 10px 8px; font-size: 14px; box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3); } .content { grid-row: 2; grid-column: 1 / 3; width: 100%; margin-left: 0; } }