MediaWiki:Common.css:修订间差异
外观
无编辑摘要 |
无编辑摘要 |
||
| 第15行: | 第15行: | ||
} | } | ||
/* | /* 首页样式 */ | ||
/* 单按钮核心行动区 */ | |||
/* | |||
.home-action-box { | .home-action-box { | ||
background: #ffffff; | background: #ffffff; | ||
border: 2px solid #2563eb; | border: 2px solid #2563eb; | ||
border-radius: 12px; | border-radius: 12px; | ||
padding: | padding: 32px 30px; | ||
box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.1); | box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.1); | ||
text-align: center; | text-align: center; | ||
| 第57行: | 第28行: | ||
} | } | ||
.home-action-tip { | .home-action-tip { | ||
font-size: | font-size: 18px; | ||
color: # | color: #1e293b; | ||
margin-bottom: | margin-bottom: 20px; | ||
font-weight: | font-weight: 600; | ||
} | } | ||
.home-btn- | .home-btn-create { | ||
display: inline-flex; | display: inline-flex; | ||
align-items: center; | align-items: center; | ||
padding: | justify-content: center; | ||
padding: 14px 40px; | |||
background-color: #2563eb; | background-color: #2563eb; | ||
color: #ffffff !important; | color: #ffffff !important; | ||
border-radius: 8px; | border-radius: 8px; | ||
font-size: 16px; | |||
font-weight: 600; | font-weight: 600; | ||
text-decoration: none !important; | text-decoration: none !important; | ||
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3); | |||
transition: all 0.2s ease; | transition: all 0.2s ease; | ||
} | } | ||
.home-btn- | .home-btn-create:hover { | ||
background-color: #1d4ed8; | background-color: #1d4ed8; | ||
transform: translateY(-2px); | transform: translateY(-2px); | ||
box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4); | |||
/* 首页样式 */ | |||
. | |||
} | } | ||
2026年9月7日 (一) 18:20的版本
/* 修改可视编辑器编辑区:灰色实线边框,加大外围范围 */
.ve-ui-surface .ve-ce-attachedRootNode {
border: 2px solid #cccccc !important; /* 灰色实线 */
padding: 24px !important; /* 加大内边距,使框体范围变大 */
margin-top: 10px !important;
min-height: 450px !important; /* 设定最小高度,让框体向下延伸更长 */
border-radius: 6px !important;
background-color: #fafafa !important; /* 保持浅灰底色 */
}
/* 获得焦点时的边框样式 */
.ve-ui-surface-focused .ve-ce-attachedRootNode {
border-color: #999999 !important; /* 获得焦点时变成更深一点的灰色 */
box-shadow: 0 0 6px rgba(0, 0, 0, 0.08) !important;
}
/* 首页样式 */
/* 单按钮核心行动区 */
.home-action-box {
background: #ffffff;
border: 2px solid #2563eb;
border-radius: 12px;
padding: 32px 30px;
box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.1);
text-align: center;
margin-bottom: 35px;
}
.home-action-tip {
font-size: 18px;
color: #1e293b;
margin-bottom: 20px;
font-weight: 600;
}
.home-btn-create {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 14px 40px;
background-color: #2563eb;
color: #ffffff !important;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
text-decoration: none !important;
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
transition: all 0.2s ease;
}
.home-btn-create:hover {
background-color: #1d4ed8;
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
/* 首页样式 */
}