26 lines
449 B
CSS
26 lines
449 B
CSS
/* head/base.css */
|
|
.site-header {
|
|
position: relative;
|
|
z-index: 50;
|
|
width: 100%;
|
|
background: var(--color_bg, #fff);
|
|
color: var(--color_text_primary, #111);
|
|
}
|
|
|
|
.site-header a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.site-header-inner {
|
|
max-width: var(--page_max_width_pc, 1200px);
|
|
margin: 0 auto;
|
|
padding: 12px 16px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.site-logo {
|
|
font-weight: 700;
|
|
font-size: 20px;
|
|
}
|