Template:Banned/styles.css
From Qa2triots Wiki
Jump to navigationJump to search
.banned-card {
box-sizing: border-box;
width: min(92vw, 560px);
max-width: 100%;
margin: 1em auto;
background: #000;
color: #fff;
border: 2px solid #000;
border-radius: 7px;
overflow: hidden;
text-align: center;
font-family: sans-serif;
}
.banned-card__image {
width: 100%;
aspect-ratio: 16 / 9;
background: #000;
overflow: hidden;
line-height: 0;
}
.banned-card__image .mw-file-element,
.banned-card__image img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
margin: 0 auto;
}
.banned-card__text {
padding: 12px 16px 16px;
line-height: 1.35;
font-size: 18px;
}
.banned-card__title {
display: block;
margin-bottom: 6px;
font-size: 21px;
font-weight: 700;
}
@media screen and (max-width: 600px) {
.banned-card {
width: 94vw;
border-radius: 5px;
}
.banned-card__text {
padding: 10px 12px 13px;
font-size: 15px;
}
.banned-card__title {
font-size: 17px;
}
}