跳转到内容
打开/关闭搜索
搜索
打开/关闭菜单
1
条目
1
用户
147
编辑
Anachronism
导航
首页
最近更改
随机页面
MediaWiki帮助
特殊页面
打开/关闭外观设置菜单
无法加载外观设置。请检查您的网络连接并重试。
重试
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。
user-interface-preferences
个人工具
登录
查看“︁MediaWiki:Common.css”︁的源代码
MediaWiki界面页面
查看
阅读
查看源代码
查看历史
相关页面
系统消息
讨论
更多操作
更多
工具
链入页面
相关更改
页面信息
←
MediaWiki:Common.css
因为以下原因,您没有权限编辑该页面:
您请求的操作仅限属于该用户组的用户执行:
旅人
此页面为本wiki上的软件提供界面文本,并受到保护以防止滥用。如欲修改所有wiki的翻译,请访问
translatewiki.net
上的MediaWiki本地化项目。
您无权编辑此CSS页面,因为编辑此页面可能会影响所有访问者。
您可以查看和复制此页面的源代码。
/* ============================================ FX 效果类库 全站可调用:给任意元素加对应类名即可 ============================================ */ /* ---- 边缘发光:静态 ---- */ .fx-glow { box-shadow: 0 0 6px rgba(139, 26, 43, 0.7), 0 0 14px rgba(139, 26, 43, 0.5), 0 0 22px rgba(139, 26, 43, 0.3); } /* ---- 边缘发光:呼吸脉冲 ---- */ @keyframes fx-pulse-glow { 0%, 100% { box-shadow: 0 0 6px rgba(139, 26, 43, 0.7), 0 0 14px rgba(139, 26, 43, 0.5), 0 0 22px rgba(139, 26, 43, 0.3); } 50% { box-shadow: 0 0 10px rgba(139, 26, 43, 1), 0 0 20px rgba(139, 26, 43, 0.7), 0 0 32px rgba(139, 26, 43, 0.5); } } .fx-pulse { animation: fx-pulse-glow 2s ease-in-out infinite; } /* ---- 图标切换:一显一隐 ---- */ .fx-swap { position: relative; display: inline-flex; align-items: center; justify-content: center; } .fx-swap__a, .fx-swap__b { transition: opacity 0.3s ease, transform 0.3s ease; line-height: 1; } .fx-swap__b { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.85); opacity: 0; } .fx-swap:hover .fx-swap__a, .fx-swap.is-active .fx-swap__a { opacity: 0; transform: scale(0.85); } .fx-swap:hover .fx-swap__b, .fx-swap.is-active .fx-swap__b { opacity: 1; transform: translate(-50%, -50%) scale(1); } /* ---- 文字边缘发光:静态 ---- */ .fx-text-glow { text-shadow: 0 0 4px rgba(255, 200, 210, 0.9), 0 0 8px rgba(139, 26, 43, 0.8), 0 0 16px rgba(139, 26, 43, 0.6); } /* ---- 文字边缘发光:呼吸脉冲 ---- */ @keyframes fx-text-pulse { 0%, 100% { text-shadow: 0 0 4px rgba(255, 200, 210, 0.7), 0 0 8px rgba(139, 26, 43, 0.5), 0 0 14px rgba(139, 26, 43, 0.3); } 50% { text-shadow: 0 0 6px rgba(255, 200, 210, 1), 0 0 14px rgba(139, 26, 43, 0.9), 0 0 24px rgba(139, 26, 43, 0.6); } } .fx-text-pulse { animation: fx-text-pulse 2s ease-in-out infinite; } /* ---- 悬停轻微放大 ---- */ .fx-hover-grow { transition: transform 0.2s; } .fx-hover-grow:hover { transform: scale(1.08); } /* ============================================ MediaWiki默认功能禁用 ============================================ */ /* ---- 禁用分类页面自动列出子项 ---- */ .ns-14 #mw-pages { display: none; } /* ============================================ 附加工具栏配置 ============================================ */ /* ===== 工具栏面板里的功能按钮 ===== */ .rail-action-button { display: inline-flex; align-items: center; justify-content: center; padding: 0.6rem 1.2rem; background: #56000d; color: #fff; border: none; border-radius: 0.5rem; font-size: 0.95rem; font-family: inherit; cursor: pointer; transition: background 0.2s, transform 0.15s; } .rail-action-button:hover { background: #8b1a2b; } .rail-action-button:active { transform: scale(0.97); } /* ===== 工具栏设置账户区 ===== */ .rail-account-loading { color: #888; font-size: 0.9rem; } .rail-account-name { font-size: 1.1rem; font-weight: bold; color: #56000d; margin-bottom: 0.5rem; } .rail-account-groups { font-size: 0.9rem; color: #555; margin-bottom: 0.75rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.3rem; } .rail-group-tag { display: inline-block; padding: 0.15rem 0.5rem; background: rgba(86, 0, 13, 0.1); color: #56000d; border-radius: 0.25rem; text-decoration: none; font-size: 0.85rem; transition: background 0.15s; } a.rail-group-tag:hover { background: rgba(86, 0, 13, 0.22); } .rail-account-stats { display: flex; gap: 1rem; font-size: 0.85rem; color: #666; margin-bottom: 0.75rem; } .rail-account-actions { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.5rem; } .rail-account-logout { margin-top: 0.5rem; } .rail-action-button--danger { background: #6b1010; } .rail-action-button--danger:hover { background: #8b1a2b; } .rail-account-guest { color: #666; font-size: 0.9rem; margin: 0 0 0.75rem 0; } /* 强制按钮文字为白色 */ .rail-panel .rail-action-button, .rail-panel .rail-action-button:link, .rail-panel .rail-action-button:visited, .rail-panel .rail-action-button:hover, .rail-panel a.rail-action-button { color: #fff !important; text-decoration: none !important; } /* 账户标题 */ .rail-account-title { font-size: 1rem; color: #56000d; border-left: 3px solid #56000d; padding-left: 0.5rem; margin: 1rem 0 0.5rem 0; font-weight: bold; } .rail-account-title:first-child { margin-top: 0; }
返回
MediaWiki:Common.css
。
查看“︁MediaWiki:Common.css”︁的源代码
MediaWiki界面页面