Шаблон:CategoryMenu/styles.css: различия между версиями
Материал из Space Station 14 Вики
Pok (обсуждение | вклад) мНет описания правки |
Pok (обсуждение | вклад) мНет описания правки |
||
Строка 4: | Строка 4: | ||
border-radius: 0.3em; | border-radius: 0.3em; | ||
background-color: #34343f; | background-color: #34343f; | ||
padding: 12px 10px; | padding: 12px 10px; | ||
box-sizing: border-box; | box-sizing: border-box; | ||
Строка 10: | Строка 9: | ||
} | } | ||
. | /* Основной контейнер */ | ||
color: # | .main-container { | ||
display: flex; | |||
flex-direction: column; /* Категории находятся сверху */ | |||
width: 100%; | |||
height: 100vh; /* Высота экрана */ | |||
} | |||
.categories-container { | |||
flex-shrink: 0; /* Фиксированная высота для категорий */ | |||
background-color: #2b2b35; | |||
} | } | ||
. | .menu-and-content { | ||
display: flex; | display: flex; | ||
flex-grow: 1; /* Занимает оставшееся пространство */ | |||
} | } | ||
Строка 24: | Строка 32: | ||
justify-content: space-between; | justify-content: space-between; | ||
align-items: center; | align-items: center; | ||
background: #2b2b35; | background: #2b2b35; | ||
border-bottom: 3px solid #202029; | border-bottom: 3px solid #202029; | ||
Строка 39: | Строка 46: | ||
.categories { | .categories { | ||
display: flex; | display: flex; | ||
justify-content: center; | justify-content: center; | ||
align-items: center; | align-items: center; | ||
height: 50px; /* Фиксированная высота для категорий */ | |||
} | } | ||
Строка 55: | Строка 59: | ||
.categories div.active { | .categories div.active { | ||
display: block; | display: block; | ||
} | } | ||
Строка 65: | Строка 69: | ||
padding-right: 5px; | padding-right: 5px; | ||
box-sizing: border-box; | box-sizing: border-box; | ||
background-color: #4d4d5d; | |||
} | } | ||
Строка 70: | Строка 75: | ||
cursor: pointer; | cursor: pointer; | ||
padding: 14px 12px; | padding: 14px 12px; | ||
background-color: #4d4d5d; | |||
color: #e7e6e6; | |||
border-radius: 0.4em; | border-radius: 0.4em; | ||
font-size: 15px; | font-size: 15px; | ||
font-family: 'noto sans'; | font-family: 'noto sans'; | ||
font-weight: bold; | font-weight: bold; | ||
transition: all 0.05s; | transition: all 0.05s; | ||
box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.4); | box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.4); | ||
} | } | ||
Строка 91: | Строка 91: | ||
.menu div.active { | .menu div.active { | ||
border-left: 5px solid #6d6d7f; | border-left: 5px solid #6d6d7f; | ||
} | } | ||
.content { | .content { | ||
padding: 12px; | padding: 12px; | ||
flex-grow: 1; | |||
background-color: #4b4b59; | background-color: #4b4b59; | ||
border-radius: 0.3em; | border-radius: 0.3em; | ||
overflow: auto; | overflow: auto; | ||
box-sizing: border-box; | box-sizing: border-box; | ||
box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5); | box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5); | ||
overflow-x: hidden; | overflow-x: hidden; | ||
} | } | ||
.menu-container, .content { | |||
max-height: | max-height: calc(100vh - 50px); /* Высота с учётом высоты категории */ | ||
} | } | ||
Строка 126: | Строка 116: | ||
} | } | ||
/* Для мобильных устройств */ | |||
@media (max-width: 800px) { | @media (max-width: 800px) { | ||
.menu-container { | .menu-container { | ||
position: absolute; | position: absolute; | ||
Строка 166: | Строка 141: | ||
box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.7); | box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.7); | ||
transition: left 0.3s ease; | transition: left 0.3s ease; | ||
} | } | ||
.menu-container.active { | .menu-container.active { | ||
transform: translateX(0) | transform: translateX(0); | ||
} | } | ||
.content { | .content { | ||
width: 100%; | width: 100%; | ||
transition: margin-left 0.3s ease; | transition: margin-left 0.3s ease; | ||
} | } | ||
} | } |
Версия от 23:39, 29 сентября 2024
/* Весь блок */ .category-menu { border: 2px solid #494959; border-radius: 0.3em; background-color: #34343f; padding: 12px 10px; box-sizing: border-box; color: #e1e1e1; } /* Основной контейнер */ .main-container { display: flex; flex-direction: column; /* Категории находятся сверху */ width: 100%; height: 100vh; /* Высота экрана */ } .categories-container { flex-shrink: 0; /* Фиксированная высота для категорий */ background-color: #2b2b35; } .menu-and-content { display: flex; flex-grow: 1; /* Занимает оставшееся пространство */ } /* Категории */ .category-switcher { display: flex; justify-content: space-between; align-items: center; background: #2b2b35; border-bottom: 3px solid #202029; border-radius: 0.2em; padding: 10px 14px; font-family: "noto sans"; } .arrow { cursor: pointer; color: #d9d9d9; font-size: 1.4em; } .categories { display: flex; justify-content: center; align-items: center; height: 50px; /* Фиксированная высота для категорий */ } .categories div { display: none; font-weight: bold; font-size: 1em; } .categories div.active { display: block; } /* Меню */ .menu-container { width: 300px; overflow-y: auto; padding: 2px; padding-right: 5px; box-sizing: border-box; background-color: #4d4d5d; } .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; transition: all 0.05s; box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.4); } .menu div:hover { background-color: #525263; } .menu div.active { border-left: 5px solid #6d6d7f; } .content { padding: 12px; flex-grow: 1; background-color: #4b4b59; border-radius: 0.3em; overflow: auto; box-sizing: border-box; box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5); overflow-x: hidden; } .menu-container, .content { max-height: calc(100vh - 50px); /* Высота с учётом высоты категории */ } .content > div { display: none; } .content .active { display: block; } /* Для мобильных устройств */ @media (max-width: 800px) { .menu-container { position: absolute; width: calc(50% - 20px); transform: translateX(-400px); transition: transform 0.3s ease; z-index: 1; } .menu-toggle { position: absolute; display: block; left: 10px; 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 2px 2px 0px rgba(0, 0, 0, 0.7); transition: left 0.3s ease; } .menu-container.active { transform: translateX(0); } .content { width: 100%; transition: margin-left 0.3s ease; } }