49 lines
880 B
SCSS
49 lines
880 B
SCSS
header {
|
|
background: $blue-004;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 48px;
|
|
padding: 0px 25px;
|
|
}
|
|
|
|
header .logo-container {
|
|
// margin-left: 50px;
|
|
}
|
|
|
|
header .logo-container .logo-box {
|
|
// background: url(../img/logo.png);
|
|
// // background-size: contain;
|
|
// background-size: cover;
|
|
// background-position: center;
|
|
// background-repeat: no-repeat;
|
|
// width: 166px;
|
|
// height: 36px;
|
|
|
|
font-family: "Noto Sans", sans-serif;
|
|
color: white;
|
|
font-size: 1.5em;
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
cursor: pointer;
|
|
}
|
|
|
|
header .status-menu {}
|
|
|
|
header .status-menu ul {
|
|
list-style: none;
|
|
display: flex;
|
|
gap: 10px;
|
|
}
|
|
|
|
header .status-menu ul li:not(:last-child) {
|
|
padding: 0 10px;
|
|
border-right: solid 2px $blue-002;
|
|
}
|
|
|
|
header .status-menu ul li {
|
|
&,a{
|
|
text-decoration: none;
|
|
color: $blue-002;
|
|
}
|
|
} |