MediaWiki:Vector.css: Difference between revisions
MediaWiki interface page
More actions
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
/*Main Section*/ | /*Main Section*/ | ||
.home-header { | |||
text-align: center; | |||
} | |||
/* Infobox section */ | /* Infobox section */ | ||
| Line 52: | Line 54: | ||
html, body { | html, body { | ||
font-family: sans-serif; | font-family: sans-serif; | ||
} | |||
/* Home Grid Section*/ | |||
.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: 10px; | |||
background: var(--color-surface-2); | |||
border-radius: 4px; | |||
box-shadow: none; | |||
font-size: 0.875rem; | |||
} | |||
/*box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.04 ), 0 3px 6px rgba( 0, 0, 0, 0.0575 );*/ | |||
.home-card table.timeline { | |||
margin-top: 0.2rem; | |||
} | |||
.home-card--col2 { | |||
grid-column: 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 { | |||
font-size: 0.8125rem; | |||
letter-spacing: 0.75px; | |||
text-align: center; | |||
} | |||
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; | |||
border-radius: 4px; | |||
} | |||
.home-card__background1 { | |||
background: transparent; | |||
} | |||
.home-card__background2 { | |||
background: transparent; | |||
} | |||
.home-card__background3 { | |||
background: transparent; | |||
} | |||
.home-card__background4 { | |||
background: transparent; | |||
} | |||
.home-card__background5 { | |||
background: transparent; | |||
} | |||
.home-card__background6 { | |||
background: transparent; | |||
} | |||
.home-card__background img { | |||
width: 100%; | |||
height: 100%; | |||
object-fit: scale-down; | |||
object-position: center; | |||
transition: transform 0.2s ease; | |||
} | |||
/*.home-card:hover .home-card__background img { | |||
transform: scale( 1.1 ); | |||
}*/ | |||
.home-card--button:hover { | |||
transform: scale( 1.05 ); | |||
} | |||
.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: 5px 5px 10px 5px; | |||
height: 135px; | |||
} | |||
.home-card--button a { | |||
display: flex; | |||
height: 100%; | |||
align-items: center; | |||
padding: 0 15px; | |||
background: transparent; | |||
color: #fff; | |||
font-weight: 500; | |||
} | |||
.home-card--button .home-card__background a { | |||
padding: 0; | |||
} | } | ||
Revision as of 03:57, 2 April 2023
/* All CSS here will be loaded for users of the Vector skin */
/*Main Section*/
.home-header {
text-align: center;
}
/* Infobox section */
table.infobox {
margin-left: 1.4rem;
clear: right;
float: right;
z-index: 3!important;
overflow: hidden;
width: 320px;
padding: 5px;
max-width: 100%;
margin-bottom: 1.6rem;
padding-bottom: 20px!important;
background: var(--color-surface-2);
border-radius: var(--border-radius--medium);
border-spacing: 0;
border: 1px solid #62626226;
box-shadow: var(--box-shadow-card);
font-size: 0.875rem;
}
th.infobox-title{
padding-top: 10px;
width: 100%;
margin-top: 20px;
margin-bottom: 5px;
color: var(--color-base--emphasized);
font-size: 1.4rem;
line-height: 1.4;
}
th.infobox-header{
width: 100%;
padding-top: 15px;
border-color: var(--border-color-base);
margin-top: 15px;
color: var(--color-base--emphasized);
font-size: 1rem;
}
table.infobox>tbody {
text-align: center;
}
/* all */
html, body {
font-family: sans-serif;
}
/* Home Grid Section*/
.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: 10px;
background: var(--color-surface-2);
border-radius: 4px;
box-shadow: none;
font-size: 0.875rem;
}
/*box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.04 ), 0 3px 6px rgba( 0, 0, 0, 0.0575 );*/
.home-card table.timeline {
margin-top: 0.2rem;
}
.home-card--col2 {
grid-column: 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 {
font-size: 0.8125rem;
letter-spacing: 0.75px;
text-align: center;
}
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;
border-radius: 4px;
}
.home-card__background1 {
background: transparent;
}
.home-card__background2 {
background: transparent;
}
.home-card__background3 {
background: transparent;
}
.home-card__background4 {
background: transparent;
}
.home-card__background5 {
background: transparent;
}
.home-card__background6 {
background: transparent;
}
.home-card__background img {
width: 100%;
height: 100%;
object-fit: scale-down;
object-position: center;
transition: transform 0.2s ease;
}
/*.home-card:hover .home-card__background img {
transform: scale( 1.1 );
}*/
.home-card--button:hover {
transform: scale( 1.05 );
}
.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: 5px 5px 10px 5px;
height: 135px;
}
.home-card--button a {
display: flex;
height: 100%;
align-items: center;
padding: 0 15px;
background: transparent;
color: #fff;
font-weight: 500;
}
.home-card--button .home-card__background a {
padding: 0;
}