Files
ITStudioMainSite/style.css
T

129 lines
4.2 KiB
CSS

/*
Theme Name: IT Studio Theme
Theme URI: https://github.com/itstudio-2002/ITStudioMainSite
Description: 中国海洋大学爱特工作室官方网站主题 - A modern WordPress theme for IT Studio of Ocean University of China
Version: 2.1.0
Author: IT Studio
Author URI: https://it.ouc.edu.cn
License: MIT
License URI: https://opensource.org/licenses/MIT
Text Domain: itstudio
Tags: responsive, modern, dark-mode, bilingual
*/
/* =========================================
1. 设计令牌 (Design Tokens) - 全局变量
========================================= */
:root {
/* --- 调色板: 海洋与极客 --- */
--color-primary: #0969da; /* 核心蓝:用于链接、主按钮 */
--color-primary-light: #58a6ff; /* 亮蓝:用于深色模式主色 */
--color-success: #2dba4e; /* 成功绿:代码风格点缀 */
--color-purple: #8957e5; /* 极客紫:强调色 */
--color-danger: #cf222e; /* 警告红 */
/* --- 主题色: 浅色模式 (Light) --- */
--bg-body: #ffffff; /* 页面背景 */
--bg-surface: #f6f8fa; /* 次级背景 (Sidebar/Footer) */
--bg-card: #ffffff; /* 卡片背景 */
--text-primary: #24292f; /* 主要文字 */
--text-secondary: #343a40; /* 次要文字 */
--border-default: #d0d7de; /* 默认边框 */
--border-muted: #d8dee4; /* 淡边框 */
--shadow-sm: 0 1px 3px rgba(140, 149, 159, 0.12);
--shadow-md: 0 4px 12px rgba(140, 149, 159, 0.15);
--shadow-lg: 0 8px 24px rgba(140, 149, 159, 0.2);
/* --- 排版 (Typography) --- */
--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
--font-mono: ui-monospace, SFMono-Regular, "SF Mono", "Menlo", "Consolas", monospace;
/* --- 布局 (Layout) --- */
--header-height: 90px;
--container-width: 1400px;
--radius-sm: 6px;
--radius-md: 8px;
/* --- 动画 (Animation) --- */
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
--duration-fast: 0.2s;
--duration-normal: 0.3s;
}
/* --- 主题色: 深色模式 (Dark) --- */
[data-theme="dark"] {
--color-primary: #58a6ff; /* 深色模式下蓝色需要更亮 */
--bg-body: #0d1117; /* 深邃蓝黑 (Github Dark) */
--bg-surface: #161b22;
--bg-card: #161b22;
--text-primary: #c9d1d9; /* 灰白 */
--text-secondary: #6d737c; /* 灰 */
--border-default: #30363d;
--border-muted: #21262d;
--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.8);
}
/* =========================================
2. 全局重置 (Reset & Base)
========================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
min-height: 100vh; /* 确保HTML高度撑满 */
font-size: 18px; /* 增加基础字号 (原默认为16px) */
}
body {
font-family: var(--font-sans);
background-color: var(--bg-body);
color: var(--text-primary);
line-height: 1.6;
transition: background-color var(--duration-normal), color var(--duration-normal);
-webkit-font-smoothing: antialiased;
display: flex;
flex-direction: column;
min-height: 100vh; /* 确保Body高度撑满并使用Flex布局 */
}
a {
color: var(--color-primary);
text-decoration: none;
transition: opacity var(--duration-fast);
}
a:hover { opacity: 0.85; }
ul { list-style: none; }
button { font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }
svg { fill: currentColor; }
/* =========================================
3. 全局工具类 (Global Utilities)
========================================= */
.container {
max-width: var(--container-width);
margin: 0 auto;
padding: 0 24px;
width: 100%;
}
/* 双语内容自动填充系统 */
/* 中文模式:填充 data-cn 到伪元素 */
body:not([lang="en"]) [data-cn]:not(.hero-description):not(.gh-state):empty::before {
content: attr(data-cn);
}
/* 英文模式:填充 data-en 到伪元素 */
body[lang="en"] [data-en]:not(.hero-description):not(.gh-state):empty::before {
content: attr(data-en);
}
/* WordPress Admin Bar 兼容性修复 */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }