Module:Prevnext/styles.css: Difference between revisions
From the Dyson Sphere Program Wiki
More actions
Content deleted Content added
Created page with ".template-prevnext { margin: var( --space-md ) 0; padding: var( --space-xxs ); background-color: var( --color-surface-2 ); border-radius: var( --border-radius--medium ); font-size: 0.875rem; line-height: 1.375; display: grid; align-items: center; grid-template-areas: 'prev current next'; grid-template-columns: minmax( max-content, 1fr ) minmax( max-content, 1fr ) minmax( max-content, 1fr ); } .template-prevnext__prev, .template-pr..." |
mNo edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 2: | Line 2: | ||
margin: var( --space-md ) 0; |
margin: var( --space-md ) 0; |
||
padding: var( --space-xxs ); |
padding: var( --space-xxs ); |
||
background-color: var( --color-surface- |
background-color: var( --color-surface-1 ); |
||
border |
border: var( --border-base ); |
||
border-radius: var( --border-radius-medium ); |
|||
font-size: 0.875rem; |
|||
font-size: var( --font-size-small ); |
|||
line-height: 1.375; |
|||
line-height: var( --line-height-xx-small ); |
|||
display: grid; |
display: grid; |
||
align-items: center; |
align-items: center; |
||
Line 15: | Line 16: | ||
.template-prevnext__next { |
.template-prevnext__next { |
||
position: relative; |
position: relative; |
||
border-radius: var( --border-radius- |
border-radius: var( --border-radius-base ); |
||
display: flex; |
display: flex; |
||
align-items: center; |
align-items: center; |
||
gap: |
gap: var( --space-sm ); |
||
} |
} |
||
Line 43: | Line 44: | ||
.template-prevnext__link:hover { |
.template-prevnext__link:hover { |
||
background-color: var( --background-color-quiet--hover ); |
background-color: var( --background-color-button-quiet--hover ); |
||
} |
} |
||
Line 59: | Line 60: | ||
.template-prevnext__link:active { |
.template-prevnext__link:active { |
||
background-color: var( --background-color-quiet--active ); |
background-color: var( --background-color-button-quiet--active ); |
||
} |
} |
||
.template-prevnext__link:active > .template-prevnext__icon { |
.template-prevnext__link:active > .template-prevnext__icon { |
||
opacity: var( --opacity-icon-base-- |
opacity: var( --opacity-icon-base--selected ); |
||
} |
} |
||
Line 69: | Line 70: | ||
opacity: var( --opacity-icon-base ); |
opacity: var( --opacity-icon-base ); |
||
transition: transform 250ms ease; |
transition: transform 250ms ease; |
||
⚫ | |||
⚫ | |||
⚫ | |||
} |
} |
||
.template-prevnext__title { |
.template-prevnext__title { |
||
color: var( --color |
color: var( --color-emphasized ); |
||
font-weight: 500; |
font-weight: 500; |
||
} |
} |
||
.template-prevnext__link .template-prevnext__title { |
.template-prevnext__link .template-prevnext__title { |
||
color: var( --color- |
color: var( --color-progressive ); |
||
} |
} |
||
Line 85: | Line 90: | ||
.template-prevnext__desc { |
.template-prevnext__desc { |
||
color: var( --color |
color: var( --color-subtle ); |
||
font-size: |
font-size: var( --font-size-x-small ); |
||
} |
} |
||
Line 102: | Line 107: | ||
height: 100%; |
height: 100%; |
||
} |
} |
||
⚫ | |||
⚫ | |||
⚫ | |||
@media screen and ( max-width: 639px ) { |
@media screen and ( max-width: 639px ) { |
Latest revision as of 19:21, 30 June 2025
.template-prevnext {
margin: var( --space-md ) 0;
padding: var( --space-xxs );
background-color: var( --color-surface-1 );
border: var( --border-base );
border-radius: var( --border-radius-medium );
font-size: var( --font-size-small );
line-height: var( --line-height-xx-small );
display: grid;
align-items: center;
grid-template-areas: 'prev current next';
grid-template-columns: minmax( max-content, 1fr ) minmax( max-content, 1fr ) minmax( max-content, 1fr );
}
.template-prevnext__prev,
.template-prevnext__next {
position: relative;
border-radius: var( --border-radius-base );
display: flex;
align-items: center;
gap: var( --space-sm );
}
.template-prevnext__prev,
.template-prevnext__current,
.template-prevnext__next {
padding: var( --space-xs );
}
.template-prevnext__prev {
grid-area: prev;
}
.template-prevnext__current {
grid-area: current;
text-align: center;
}
.template-prevnext__next {
grid-area: next;
justify-content: flex-end;
text-align: end;
}
.template-prevnext__link:hover {
background-color: var( --background-color-button-quiet--hover );
}
.template-prevnext__link:hover > .template-prevnext__icon {
opacity: var( --opacity-icon-base--hover );
}
.template-prevnext__prev:hover > .template-prevnext__icon {
transform: translateX( -2px );
}
.template-prevnext__next:hover > .template-prevnext__icon {
transform: translateX( 2px );
}
.template-prevnext__link:active {
background-color: var( --background-color-button-quiet--active );
}
.template-prevnext__link:active > .template-prevnext__icon {
opacity: var( --opacity-icon-base--selected );
}
.template-prevnext__icon {
opacity: var( --opacity-icon-base );
transition: transform 250ms ease;
}
.template-prevnext__icon img {
filter: var( --filter-invert );
}
.template-prevnext__title {
color: var( --color-emphasized );
font-weight: 500;
}
.template-prevnext__link .template-prevnext__title {
color: var( --color-progressive );
}
.template-prevnext__link--new .template-prevnext__title {
color: var( --color-link-new );
}
.template-prevnext__desc {
color: var( --color-subtle );
font-size: var( --font-size-x-small );
}
.template-prevnext__linkoverlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.template-prevnext__linkoverlay > a {
display: block;
font-size: 0;
height: 100%;
}
@media screen and ( max-width: 639px ) {
.template-prevnext {
grid-template-areas:
'current current'
'prev next';
grid-template-columns: auto;
}
.template-prevnext__current {
border-bottom: 1px solid var( --border-color-base );
}
}