38 lines
726 B
CSS
38 lines
726 B
CSS
/* head_18.css */
|
|
|
|
.__PFX__-h18-wrap{
|
|
padding:16px 12px;
|
|
background:
|
|
repeating-linear-gradient(
|
|
90deg,
|
|
var(--bg-soft-color),
|
|
var(--bg-soft-color) 10px,
|
|
var(--bg-color) 10px,
|
|
var(--bg-color) 20px
|
|
);
|
|
border-bottom:1px solid var(--border-color);
|
|
}
|
|
|
|
.__PFX__-h18-row{
|
|
display:flex;
|
|
justify-content:space-between;
|
|
align-items:center;
|
|
}
|
|
|
|
.__PFX__-h18-logo{
|
|
font-size:22px;
|
|
font-weight:700;
|
|
color:var(--primary-color);
|
|
}
|
|
|
|
.__PFX__-h18-btn{
|
|
width:30px;
|
|
height:30px;
|
|
display:flex;
|
|
justify-content:center;
|
|
align-items:center;
|
|
background:var(--primary-color);
|
|
color:#fff;
|
|
border-radius:50%;
|
|
}
|