54 lines
838 B
CSS
54 lines
838 B
CSS
.header {
|
|
display: flex;
|
|
position: relative;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #eff1fd;
|
|
width: 100%;
|
|
height: 50px;
|
|
min-height: 50px;
|
|
z-index: 1;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
-o-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.header__title {
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
margin-left: 10px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.header__menu-btn {
|
|
position: absolute;
|
|
top: calc((100% - 40px) / 2);
|
|
right: 28px;
|
|
width: 40px;
|
|
height: 40px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.cross {
|
|
position: absolute;
|
|
top: 33%;
|
|
right: 28px;
|
|
width: 40px;
|
|
height: 40px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.cross {
|
|
height: 33%;
|
|
width: auto;
|
|
}
|
|
|
|
.header__logo-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|