模板:Mainpage/style.css:修订间差异

来自Fetarute Wiki
无编辑摘要
无编辑摘要
第16行: 第16行:
font-weight: bold;
font-weight: bold;
color: var(--color-base--emphasized);
color: var(--color-base--emphasized);
}
display: inline-block;
 
.fr-header__title #pic {
border-radius: 50%;
overflow: hidden;
}
}


.fr-header__title #pic img {
.fr-header__title #pic img {
position: absolute;
position: absolute;
top: -20px;
top: -10px;
right: -20px;
right: -15px;
width: 50px;
width: 25px;
height: 50px;
height: 25px;
border-radius: 50%;
}
}


第46行: 第43行:
text-align: center;
text-align: center;
margin: 10px 0;
margin: 10px 0;
}
.fr-header-search code {
padding: 0.25em 0.5em;
line-height: 1;
font-weight: var(--font-weight-medium);
font-size: 0.875rem;
border-radius: var(--border-radius--small);
border: 1px solid;
border-color: var(--border-color-base);
background: var(--color-surface-3);
color: var(--color-base--emphasized);
display: inline;
padding-top: 0.1em;
padding-bottom: 0.1em;
}
}



2023年10月4日 (三) 14:14的版本

.fr-header__pretitle {
	margin-bottom: var(--space-xs);
	color: var(--color-base--subtle);
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.fr-header__title {
	position: relative;
	margin: 0;
	font-size: 3rem;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	line-height: 1;
	font-weight: bold;
	color: var(--color-base--emphasized);
	display: inline-block;
}

.fr-header__title #pic img {
	position: absolute;
	top: -10px;
	right: -15px;
	width: 25px;
	height: 25px;
	border-radius: 50%;
}

.fr-header__subtitle {
	margin-top: var(--space-xs);
	font-size: 0.875rem;
}

.fr-header-search {
	padding: 10px;
	border: 1px solid;
	border-color: var(--border-color-base--darker);
	border-radius: var(--border-radius--pill);
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: var(--font-weight-medium);
	text-align: center;
	margin: 10px 0;
}

.fr-header-search code {
	padding: 0.25em 0.5em;
	line-height: 1;
	font-weight: var(--font-weight-medium);
	font-size: 0.875rem;
	border-radius: var(--border-radius--small);
	border: 1px solid;
	border-color: var(--border-color-base);
	background: var(--color-surface-3);
	color: var(--color-base--emphasized);
	display: inline;
	padding-top: 0.1em;
	padding-bottom: 0.1em;
}

.fr-header-search p {
	margin: 0;
}

.fr-header-search__searchIcon img {
	margin-right: var(--space-md);
	opacity: var(--opacity-icon-base);
}

/* PC & Pad */
@media (min-width: 720px) {
	
}

/* Phone */
@media (max-width: 720px) {
	.desktoponly {
		display: none;
	}
}