mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
53 lines
914 B
CSS
53 lines
914 B
CSS
.content {
|
|
text-align: center;
|
|
clear: both;
|
|
}
|
|
|
|
.bannerCnt img {
|
|
width: 300px;
|
|
height: 100px;
|
|
border: var(--banner-image-border);
|
|
max-width: 100%;
|
|
}
|
|
|
|
.boardTitle {
|
|
font-family: var(--board-title-font-family);
|
|
font-size: var(--board-title-font-size);
|
|
font-weight: 700;
|
|
letter-spacing: -2px;
|
|
margin-top: 0;
|
|
color: var(--board-title-text-color);
|
|
}
|
|
|
|
.boardSubtitle {
|
|
margin-top: 3px;
|
|
font-size: var(--board-address-font-size);
|
|
color: var(--board-address-text-color);
|
|
}
|
|
|
|
.content hr {
|
|
width: 90%;
|
|
}
|
|
|
|
.offlineIcon {
|
|
background-image: url('/public/assets/icons/offline.png');
|
|
display: inline-block;
|
|
margin-left: 10px;
|
|
width: 16px;
|
|
height: 16px;
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
image-rendering: pixelated;
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
.bannerCnt {
|
|
padding-top: 35px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.bannerCnt {
|
|
padding: 5px 0 2px 0;
|
|
}
|
|
} |