打开/关闭菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

模板:Dictionary/shared/styles.css:修订间差异

来自骷髅女孩Wiki
创建页面,内容为“.home-card { width: min-content; } .home-card p em { display: none; } .dictionary { border-collapse: collapse; white-space: nowrap; } .dictionary th { background-color: #750800; color: #fff; border-bottom-width: 0; font-size: 1.05em; padding: 5px 10px; text-align: center; } .dictionary td { color: #000; font-size: 1em; padding: 5px 10px; } .dictionary td, .dictionary th { border-bottom: 1px solid #750800; }”
 
无编辑摘要
第2行: 第2行:
width: min-content;
width: min-content;
}
}
.home-card p em {
.home-card p em {
display: none;
display: none;
}
}
.dictionary {
.dictionary {
border-collapse: collapse;
border-collapse: collapse;
white-space: nowrap;
white-space: nowrap;
}
}
.dictionary th {
.dictionary th {
background-color: #750800;
background-color: var(--color-Dic-Theme);
color: #fff;
color: var(--color-Dic-Title);
border-bottom-width: 0;
border-bottom-width: 0;
font-size: 1.05em;
font-size: 1.05em;
第17行: 第20行:
text-align: center;
text-align: center;
}
}
.dictionary td {
.dictionary td {
color: #000;
color: var(--color-base--emphasized);
font-size: 1em;
font-size: 1em;
padding: 5px 10px;
padding: 5px 10px;
}
}
.dictionary td, .dictionary th {
.dictionary td, .dictionary th {
border-bottom: 1px solid #750800;
border-bottom: 1px solid var(--color-Dic-Theme);
}
}

2024年12月13日 (五) 12:41的版本

.home-card {
	width: min-content;
}

.home-card p em {
	display: none;
}

.dictionary {
	border-collapse: collapse;
	white-space: nowrap;
}

.dictionary th {
	background-color: var(--color-Dic-Theme);
	color: var(--color-Dic-Title);
	border-bottom-width: 0;
	font-size: 1.05em;
	padding: 5px 10px;
	text-align: center;
}

.dictionary td {
	color: var(--color-base--emphasized);
	font-size: 1em;
	padding: 5px 10px;
}

.dictionary td, .dictionary th {
	border-bottom: 1px solid var(--color-Dic-Theme);
}