“模板:Tnull/doc”与“模板:Main page/shared/styles.css”:页面之间的差异

来自NebulaeWiki
< 模板:Tnull(页面间差异)
(创建页面,内容为“{{Documentation}} ===Usage=== '''Tnull''' is used to nullify templates in the monospaced font. It is similar to {{tlx|tlx}} in the way that it has support for many parameters, but it does not link the template name. It is similar to {{tl|tlc}}, but does not prevent text wrapping. ===Example=== Typing <code>{{tnull|foo|bar|baz|boo}}</code> in the edit window would yield <code>{{foo|bar|baz|boo}}</code> in the rendered pag…”)
 
(创建页面,内容为“ .g1-container { width: 280px; height: 22px; border-radius: 7px; background: #eee; } .g1-progress { width: 50%; height: inherit; border-radius: 7px 0 0 7px; background: #096dd9; } .g2-container { width: 280px; height: 22px; border-radius: 7px; background: #eee; } .g2-progress { width: 50%; height: inherit; border-radius: 7px 0 0 7px; background: #096dd9; } .mw-ui-input { box-shadow: inset 0 3…”)
 
第1行: 第1行:
{{Documentation}}
===Usage===
'''Tnull''' is used to nullify templates in the monospaced font. It is similar to {{tlx|tlx}} in the way that it has support for many parameters, but it does not link the template name. It is similar to {{tl|tlc}}, but does not prevent text wrapping.


===Example===
.g1-container {
Typing <code>&#123;&#123;tnull|foo|bar|baz|boo&#125;&#125;</code> in the edit window would yield <code>&#123;&#123;foo|bar|baz|boo&#125;&#125;</code> in the rendered page.
    width: 280px;
    height: 22px;
    border-radius: 7px;
    background: #eee;
}
.g1-progress {
    width: 50%;
    height: inherit;
    border-radius: 7px 0 0 7px;
    background: #096dd9;
}
.g2-container {
    width: 280px;
    height: 22px;
    border-radius: 7px;
    background: #eee;
}
.g2-progress {
    width: 50%;
    height: inherit;
    border-radius: 7px 0 0 7px;
    background: #096dd9;
}


===Special character handling===
.mw-ui-input
===="=" (equality sign)====
{
If there is a "=" character (equality/equals sign) in ''any'' parameter, it must be replaced with <code>&amp;#61;</code> [or {{tl|{{=}}}}?]:
    box-shadow: inset 0 3px 6px rgba( 0, 0, 0, 0.04 );
:<code>&#123;&#123;tnull|click|image&amp;#61;<var>image name</var>|width&amp;#61;<var>width</var>|height&amp;#61;<var>height</var>|link&amp;#61;<var>page name</var>&#125;&#125;</code>
}
.mw-ui-button
{
    box-shadow: inset 0 3px 6px rgba( 0, 0, 0, 0.04 );
}


Or you can use <code><var>parameter-number</var>=<var>value</var></code> as in:
.home-grid {
:<code>&#123;&#123;tnull|click|2=image=<var>image name</var>|3=width=<var>width</var>|4=height=<var>height</var>|5=link=<var>page name</var>&#125;&#125;</code>
display: grid;
grid: auto-flow dense/repeat( auto-fit, minmax( 9.375rem, 1fr ) );
grid-auto-rows: minmax( 3rem, auto );
grid-gap: 0.625rem;
}


Either method would yield the following output:
:{{tnull|click|2=image=<var>image name</var>|3=width=<var>width</var>|4=height=<var>height</var>|5=link=<var>page name</var>}}


===="|" (vertical bar, pipe)====
.home-grid--col2 {
If a second consecutive pipe (|) is used to denote that a parameter has been skipped, you must replace it with <code>&amp;#124;</code> as in:
grid-template-columns: 1fr 1fr;
:<code>&#123;&#123;tnull|look from|Alan|&amp;#124;all the Alans&#125;&#125;</code>
}


That would yield the following displayed output:
.home-grid a.external {
:{{tnull|look from|Alan|&#124;all the Alans}}
background-image: none;
}


<includeonly>
.home-card {
[[Category:Typing-aid templates]]
position: relative;
}}</includeonly>
padding: 15px;
<noinclude></noinclude>
background: var( --color-surface-1 );
border-radius: 8px;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.04 ), 0 3px 6px rgba( 0, 0, 0, 0.0575 );
font-size: 0.875rem;
}
 
.home-card table.timeline {
margin-top: 0.2rem;
}
 
.home-card--col1 {
grid-column: span 1;
}
 
.home-card--col2 {
grid-column: span 2;
}
 
.home-card--row1 {
grid-row: span 1;
}
 
.home-card--row2 {
grid-row: span 2;
}
 
.home-card--row3 {
grid-row: span 3;
}
 
.home-card--row4 {
grid-row: span 4;
}
 
.home-card--row8 {
grid-row: span 8 / auto;
}
 
.home-card__label {
color: var( --color-base--subtle );
font-size: 0.8125rem;
letter-spacing: 0.75px;
}
 
h3.home-card__header {
margin-top: 0;
font-size: 1rem;
}
 
.home-card__header a {
display: flex;
align-items: center;
justify-content: space-between;
}
 
.home-card__header a:after {
content: '▶';
font-size: 0.8125rem;
}
 
.home-card__background {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #242a31;
border-radius: 8px;
}
 
.home-card__background:after {
position: absolute;
    pointer-events: none;
top: 0;
bottom: 0;
left: 0;
    right: 0;
    display: block;
    background: linear-gradient(to right,#000,transparent);
    content: "";
}
.home-card__background img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
 
.home-card__foreground {
position: absolute;
}
 
.home-card__foreground .home-card__label {
color: #bababa;
}
 
.home-card__foreground .home-card__header {
color: #fff;
}
 
.home-card p {
margin-top: 0.2rem;
font-size: 0.875rem;
}
 
.home-card.home-card--button {
overflow: hidden;
padding: 0;
background: #242a31;
}
 
.home-card--button a {
display: flex;
height: 100%;
justify-content: center;
align-items: center;
padding: 0 15px;
background: transparent;
color: #fff;
font-weight: 500;
}
 
.home-card--button .home-card__background a {
padding: 0;
}
 
.home-card--button img {
transition: transform 0.2s ease;
}
 
.home-card--button:hover img {
transform: scale(1.1);
}
 
.home-link {
display: grid;
margin-top: 6px;
font-size: 0.875rem;
font-weight: 500;
grid-gap: 6px;
text-align: center;
}
 
.home-link__button {
display: flex;
}
 
.home-link__button a {
flex-grow: 1;
padding: 0.3rem 0.6rem;
border: 1px solid;
border-color: var( --border-color-base );
background: var( --color-surface-2 );
border-radius: 12px;
color: var( --color-base--emphasized ) !important;
}
 
.home-link__button a:hover {
background: var( --color-surface-2--hover );
}
 
.home-link__button a:active {
background: var( --color-surface-2--active );
}
 
.home-link_for_state {
margin-top: 6px;
}
 
#home-content {
margin-top: 1.6rem;
}
 
.home-card:hover .home-card__background img {
transform: scale( 1.1 );
}
 
.home-stats {
flex-grow: 1;
line-height: 1;
}
 
.home-stats__value {
font-size: 1.5rem;
font-weight: 600;
}
 
.home-stats__unit {
margin-top: 0.2rem;
color: var( --color-base--subtle );
font-size: 0.8125rem;
}
 
#home-card-QQ {
background: #24c8fd;
}
 
#home-card-kook {
background: #7acc35;
}
 
#home-card-discord {
background: #5865f2;
}
 
#home-card-patreon {
background: #ff424d;
}
 
#home-card-reddit {
background: #ff4500;
}
 
.home-footer {
font-size: 0.8125rem;
font-family: monospace;
text-align: center;
}

2023年9月18日 (一) 21:44的版本

.g1-container {
    width: 280px;
    height: 22px;
    border-radius: 7px;
    background: #eee;
}
.g1-progress {
    width: 50%;
    height: inherit;
    border-radius: 7px 0 0 7px;
    background: #096dd9;
}
.g2-container {
    width: 280px;
    height: 22px;
    border-radius: 7px;
    background: #eee;
}
.g2-progress {
    width: 50%;
    height: inherit;
    border-radius: 7px 0 0 7px;
    background: #096dd9;
}

.mw-ui-input 
{
    box-shadow: inset 0 3px 6px rgba( 0, 0, 0, 0.04 );
}
.mw-ui-button
{
    box-shadow: inset 0 3px 6px rgba( 0, 0, 0, 0.04 );
}

.home-grid {
	display: grid;
	grid: auto-flow dense/repeat( auto-fit, minmax( 9.375rem, 1fr ) );
	grid-auto-rows: minmax( 3rem, auto );
	grid-gap: 0.625rem;
}


.home-grid--col2 {
	grid-template-columns: 1fr 1fr;
}

.home-grid a.external {
	background-image: none;
}

.home-card {
	position: relative;
	padding: 15px;
	background: var( --color-surface-1 );
	border-radius: 8px;
	box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.04 ), 0 3px 6px rgba( 0, 0, 0, 0.0575 );
	font-size: 0.875rem;
}

.home-card table.timeline {
	margin-top: 0.2rem;
}

.home-card--col1 {
	grid-column: span 1;
}

.home-card--col2 {
	grid-column: span 2;
}

.home-card--row1 {
	grid-row: span 1;
}

.home-card--row2 {
	grid-row: span 2;
}

.home-card--row3 {
	grid-row: span 3;
}

.home-card--row4 {
	grid-row: span 4;
}

.home-card--row8 {
	grid-row: span 8 / auto;
}

.home-card__label {
	color: var( --color-base--subtle );
	font-size: 0.8125rem;
	letter-spacing: 0.75px;
}

h3.home-card__header {
	margin-top: 0;
	font-size: 1rem;
}

.home-card__header a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.home-card__header a:after {
	content: '▶';
	font-size: 0.8125rem;
}

.home-card__background {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #242a31;
	border-radius: 8px;
}

.home-card__background:after {
	position: absolute;
    pointer-events: none;
	top: 0;
	bottom: 0;
	left: 0;
    right: 0;
    display: block;
    background: linear-gradient(to right,#000,transparent);
    content: "";
}
.home-card__background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-card__foreground {
	position: absolute;
}

.home-card__foreground .home-card__label {
	color: #bababa;
}

.home-card__foreground .home-card__header {
	color: #fff;
}

.home-card p {
	margin-top: 0.2rem;
	font-size: 0.875rem;
}

.home-card.home-card--button {
	overflow: hidden;
	padding: 0;
	background: #242a31;
}

.home-card--button a {
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
	padding: 0 15px;
	background: transparent;
	color: #fff;
	font-weight: 500;
}

.home-card--button .home-card__background a {
	padding: 0;
}

.home-card--button img {
	transition: transform 0.2s ease;
}

.home-card--button:hover img {
	transform: scale(1.1);
}

.home-link {
	display: grid;
	margin-top: 6px;
	font-size: 0.875rem;
	font-weight: 500;
	grid-gap: 6px;
	text-align: center;
}

.home-link__button {
	display: flex;
}

.home-link__button a {
	flex-grow: 1;
	padding: 0.3rem 0.6rem;
	border: 1px solid;
	border-color: var( --border-color-base );
	background: var( --color-surface-2 );
	border-radius: 12px;
	color: var( --color-base--emphasized ) !important;
}

.home-link__button a:hover {
	background: var( --color-surface-2--hover );
}

.home-link__button a:active {
	background: var( --color-surface-2--active );
}

.home-link_for_state {
	margin-top: 6px;
}

#home-content {
	margin-top: 1.6rem;
}

.home-card:hover .home-card__background img {
	transform: scale( 1.1 );
}

.home-stats {
	flex-grow: 1;
	line-height: 1;
}

.home-stats__value {
	font-size: 1.5rem;
	font-weight: 600;
}

.home-stats__unit {
	margin-top: 0.2rem;
	color: var( --color-base--subtle );
	font-size: 0.8125rem;
}

#home-card-QQ {
	background: #24c8fd;
}

#home-card-kook {
	background: #7acc35;
}

#home-card-discord {
	background: #5865f2;
}

#home-card-patreon {
	background: #ff424d;
}

#home-card-reddit {
	background: #ff4500;
}

.home-footer {
	font-size: 0.8125rem;
	font-family: monospace;
	text-align: center;
}