*,
*::before,
*::after {
box-sizing: border-box;
}
html,
body {
height: 100%;
margin: 0;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
transition: background-color 0.3s ease, color 0.3s ease;
} .site-wrapper {
min-height: 100vh;
display: flex;
flex-direction: column;
}
main,
.main-content {
flex: 1;
} .main-content {
margin: 20px;
padding: 20px;
}
.page-content {
margin: 20px;
padding: 25px;
}
.post-content {
margin-bottom: 30px;
padding: 20px;
} header {
position: sticky;
top: 0;
z-index: 1000;
background-color: #333;
color: #fff;
} body.admin-bar header {
top: 32px;
}
header .container {
max-width: 1200px;
margin: 0 auto;
padding: 12px 20px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
} .site-logo {
max-height: 48px;
}
header h1 {
margin: 0;
font-size: 22px;
} .site-tagline {
margin: 0;
font-size: 13px;
opacity: 0.8;
} .primary-navigation {
flex: 1;
display: flex;
justify-content: center;
}
.primary-menu {
list-style: none;
display: flex;
gap: 26px;
padding: 0;
margin: 0;
}
.primary-menu li {
margin: 0;
}
.primary-menu li a {
color: #fff;
text-decoration: none;
font-size: 15px;
font-weight: 500;
position: relative;
padding: 4px 0;
} .primary-menu li a::after {
content: "";
position: absolute;
left: 0;
bottom: -6px;
width: 0;
height: 2px;
background-color: currentColor;
transition: width 0.25s ease;
}
.primary-menu li a:hover::after,
.primary-menu li.current-menu-item > a::after,
.primary-menu li.current-menu-ancestor > a::after {
width: 100%;
} .primary-menu li.current-menu-item > a,
.primary-menu li.current-menu-ancestor > a {
font-weight: 600;
} .menu-toggle {
display: none;
background: none;
border: none;
font-size: 26px;
color: #fff;
cursor: pointer;
} @media (max-width: 768px) {
.menu-toggle {
display: block;
}
.primary-navigation {
position: relative;
}
.primary-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
flex-direction: column;
background-color: #333;
display: none;
padding: 12px 0;
}
.primary-menu li {
text-align: center;
padding: 12px 0;
}
.primary-menu.open {
display: flex;
}
} #theme-toggle {
background: none;
border: none;
font-size: 20px;
color: #fff;
cursor: pointer;
} footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
margin-top: auto;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
}
.footer-logo {
max-width: 150px;
margin-bottom: 15px;
}
.footer-text {
font-size: 14px;
margin-bottom: 10px;
} .footer-menu ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
gap: 15px;
}
.footer-menu ul li a {
color: #fff;
text-decoration: none;
}
.footer-menu ul li a:hover {
text-decoration: underline;
} body.dark-mode {
background-color: #121212;
color: #e0e0e0;
}
body.dark-mode header,
body.dark-mode footer {
background-color: #1c1c1c;
}
body.dark-mode .primary-menu li a {
color: #fff;
}
body.dark-mode #theme-toggle {
color: #fff;
}
body.dark-mode .primary-menu {
background-color: #1c1c1c;
}