51 lines
1.3 KiB
HTML
51 lines
1.3 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: 50px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: #3C3882;
|
|
padding: 0 20px;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
top: 112px;
|
|
}
|
|
|
|
.button {
|
|
flex: 1;
|
|
height: 50px;
|
|
background-color: #3C3882;
|
|
border: none;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
color: #8784C9;
|
|
box-sizing: border-box;
|
|
padding: 15px 0;
|
|
}
|
|
|
|
.button:not(:last-child) {
|
|
margin-right: 20px;
|
|
}
|
|
</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> |