49 lines
847 B
CSS
49 lines
847 B
CSS
/* head_12.css */
|
|
|
|
.__PFX__-h12-wrap{
|
|
background:var(--bg-color);
|
|
border-bottom:1px solid var(--border-color);
|
|
}
|
|
|
|
.__PFX__-h12-top{
|
|
height:4px;
|
|
background:var(--primary-color);
|
|
}
|
|
|
|
.__PFX__-h12-main{
|
|
padding:12px;
|
|
display:flex;
|
|
align-items:center;
|
|
justify-content:space-between;
|
|
}
|
|
|
|
.__PFX__-h12-logo{
|
|
font-size:20px;
|
|
font-weight:700;
|
|
color:var(--primary-color);
|
|
}
|
|
|
|
.__PFX__-h12-search{
|
|
flex:1;
|
|
margin-left:12px;
|
|
position:relative;
|
|
}
|
|
|
|
.__PFX__-h12-search input{
|
|
width:100%;
|
|
padding:8px 32px 8px 12px;
|
|
border-radius:6px;
|
|
border:1px solid var(--border-color);
|
|
background:var(--bg-soft-color);
|
|
}
|
|
|
|
.__PFX__-h12-searchBtn{
|
|
position:absolute;
|
|
right:8px;
|
|
top:50%;
|
|
transform:translateY(-50%);
|
|
background:none;
|
|
border:none;
|
|
color:var(--primary-color);
|
|
}
|