26 lines
279 B
CSS
26 lines
279 B
CSS
![]() |
.header {
|
||
|
display: flex;
|
||
|
height: 80px;
|
||
|
}
|
||
|
|
||
|
.header > div {
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
font-size: 30px;
|
||
|
}
|
||
|
|
||
|
.nav {
|
||
|
list-style: none;
|
||
|
display: flex;
|
||
|
justify-content: flex-end;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.nav > * {
|
||
|
font-size: 14px;
|
||
|
font-weight: 600;
|
||
|
margin-left: 40px;
|
||
|
}
|