26 lines
486 B
CSS
26 lines
486 B
CSS
.__PFX__-nav {
|
|
background:#fff;
|
|
padding:10px 12px;
|
|
border-bottom:1px solid #eee;
|
|
}
|
|
.__PFX__-nav-inner {
|
|
display:flex;
|
|
align-items:center;
|
|
justify-content:space-between;
|
|
}
|
|
.__PFX__-logo {
|
|
font-size:22px;
|
|
font-weight:600;
|
|
color:var(--primary-color);
|
|
}
|
|
.__PFX__-search input {
|
|
height:32px;
|
|
padding:0 12px;
|
|
border-radius:6px;
|
|
border:1px solid #ddd;
|
|
width:140px;
|
|
}
|
|
@media(min-width:768px){
|
|
.__PFX__-search input { width:240px; }
|
|
}
|