51 lines
1.7 KiB
HTML
51 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.subnav-container {
|
|
width: 100%;
|
|
height: 3rem; /* Используем rem вместо пикселей */
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: #3C3882;
|
|
padding: 0 1.25rem; /* Относительные отступы */
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
top: 7rem; /* Используем rem для позиции */
|
|
}
|
|
|
|
.button {
|
|
flex: 1;
|
|
height: 100%; /* Высота кнопки равна высоте контейнера */
|
|
background-color: #3C3882;
|
|
border: none;
|
|
font-size: 1rem; /* Относительный размер шрифта */
|
|
cursor: pointer;
|
|
color: #8784C9;
|
|
box-sizing: border-box;
|
|
padding: 0.9375rem 0; /* Относительные отступы */
|
|
}
|
|
|
|
.button:not(:last-child) {
|
|
margin-right: 1.25rem; /* Относительный отступ между кнопками */
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="subnav-container">
|
|
<button class="button">ТЕГИ</button>
|
|
<button class="button">КАТЕГОРИИ</button>
|
|
<button class="button">ПЕРСОНАЖИ</button>
|
|
<button class="button">КОЛЛЕКЦИИ</button>
|
|
</div>
|
|
</body>
|
|
</html> |