2024-02-28 21:18:37 +01:00
|
|
|
.content {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2024-02-29 16:31:46 +01:00
|
|
|
margin: auto;
|
2024-02-28 21:18:37 +01:00
|
|
|
text-align: left;
|
2024-05-03 16:07:31 +02:00
|
|
|
width: 750px;
|
2024-02-28 21:18:37 +01:00
|
|
|
min-width: 750px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logo img {
|
|
|
|
|
height: 120px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
|
margin: 0px auto;
|
2024-02-29 16:31:46 +01:00
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.box {
|
2024-03-01 20:42:21 +01:00
|
|
|
position: relative;
|
2024-03-21 16:20:10 +01:00
|
|
|
background: var(--homepage-box-background-color);
|
|
|
|
|
color: var(--homepage-infobox-text-color);
|
|
|
|
|
border: 1px solid var(--homepage-box-border-color);
|
2024-02-29 16:31:46 +01:00
|
|
|
margin-bottom: 0.5em;
|
|
|
|
|
padding-bottom: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-02 22:09:41 +02:00
|
|
|
.boardsBox {
|
|
|
|
|
height: 343px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-21 22:16:24 +01:00
|
|
|
.boxBar, .infoboxBar {
|
2024-02-29 16:31:46 +01:00
|
|
|
padding-left: 0.5em;
|
|
|
|
|
line-height: 2em;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-21 22:16:24 +01:00
|
|
|
.infoboxBar {
|
|
|
|
|
background: var(--homepage-infobox-bar-background-color);
|
2024-03-21 16:20:10 +01:00
|
|
|
color: var(--homepage-infobox-bar-text-color);
|
2024-03-01 13:18:01 +01:00
|
|
|
}
|
|
|
|
|
|
2024-03-21 22:16:24 +01:00
|
|
|
.boxBar {
|
|
|
|
|
background: var(--homepage-box-bar-background-color);
|
2024-03-21 16:20:10 +01:00
|
|
|
color: var(--homepage-box-bar-text-color);
|
2024-03-01 13:18:01 +01:00
|
|
|
}
|
|
|
|
|
|
2024-03-21 22:16:24 +01:00
|
|
|
.boxBar h2, .infoboxBar h2{
|
2024-02-29 16:31:46 +01:00
|
|
|
font-size: 131%;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-01 20:42:21 +01:00
|
|
|
.boxBar span {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
padding-right: 0.25em;
|
|
|
|
|
text-transform: lowercase;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.boxBar span:hover {
|
|
|
|
|
cursor: pointer;
|
2024-03-21 16:20:10 +01:00
|
|
|
color: var(--homepage-box-bar-text-color-hover);
|
2024-03-01 20:42:21 +01:00
|
|
|
}
|
|
|
|
|
|
2024-02-29 16:31:46 +01:00
|
|
|
.boxContent {
|
|
|
|
|
line-height: 1.5em;
|
|
|
|
|
font-size: 93%;
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
padding-top: 0.25em;
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-15 22:42:13 +01:00
|
|
|
.boxContent a {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-29 16:31:46 +01:00
|
|
|
.boxContent a, .boxContent a:visited{
|
2024-03-22 16:15:38 +01:00
|
|
|
color: var(--homepage-infobox-link-text-color);
|
2024-02-29 16:31:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchBar {
|
2024-02-29 21:28:57 +01:00
|
|
|
display: flex;
|
2024-02-29 16:31:46 +01:00
|
|
|
text-align: center;
|
2024-02-29 21:28:57 +01:00
|
|
|
justify-content: center;
|
2024-02-29 16:31:46 +01:00
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-29 21:28:57 +01:00
|
|
|
.searchBar input {
|
2024-02-29 16:31:46 +01:00
|
|
|
font-size: 18px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
appearance: none;
|
|
|
|
|
border-radius: 0px;
|
|
|
|
|
border: 1px solid rgb(170, 170, 170);
|
|
|
|
|
outline: none;
|
2024-03-22 12:29:38 +01:00
|
|
|
flex-grow: 1;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
max-width: 400px;
|
2024-02-29 16:31:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchBar input {
|
|
|
|
|
width: 400px;
|
|
|
|
|
padding: 3px 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.searchBar button {
|
|
|
|
|
margin-left: 4px;
|
2024-03-01 13:18:01 +01:00
|
|
|
padding: 3px 5px;
|
2024-02-29 21:28:57 +01:00
|
|
|
display: inline-block;
|
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
font-size: 14px;
|
2024-03-22 12:29:38 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
|
flex-shrink: 0;
|
2024-02-28 21:18:37 +01:00
|
|
|
}
|
|
|
|
|
|
2024-02-29 22:37:01 +01:00
|
|
|
.capitalize {
|
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-01 20:42:21 +01:00
|
|
|
.list a {
|
|
|
|
|
display: inline-block;
|
2024-03-22 16:15:38 +01:00
|
|
|
color: var(--homepage-box-link-text-color);
|
|
|
|
|
text-decoration: var(--homepage-box-link-text-decoration);
|
2024-03-01 20:42:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list a:hover {
|
2024-03-22 16:15:38 +01:00
|
|
|
color: var(--homepage-box-link-text-color-hover);
|
|
|
|
|
text-decoration: var(--homepage-box-link-text-decoration-hover);
|
2024-03-01 20:42:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.boardsBoxContent {
|
|
|
|
|
font-size: 93%;
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
padding-top: 0.25em;
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
line-height: 130%;
|
|
|
|
|
display: table;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.boardsBoxContent .column {
|
|
|
|
|
float: left;
|
2024-04-18 17:14:59 +02:00
|
|
|
width: 163px;
|
|
|
|
|
margin-right: 20px;
|
2024-03-01 20:42:21 +01:00
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.boardsBoxContent h3 {
|
|
|
|
|
font-size: 100%;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
text-decoration: underline;
|
2024-03-21 16:20:10 +01:00
|
|
|
color: var(--homepage-box-bar-text-color);
|
2024-03-15 22:42:13 +01:00
|
|
|
}
|
|
|
|
|
|
2024-03-16 13:52:06 +01:00
|
|
|
.footer a {
|
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-10 17:56:34 +02:00
|
|
|
.version {
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding-top: 2em;
|
|
|
|
|
padding-bottom: 1em;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.version a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: unset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.version a:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-02 22:09:41 +02:00
|
|
|
.popularThreads {
|
|
|
|
|
font-size: 93%;
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
padding-top: 0.25em;
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
line-height: 130%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.popularThreads .loading {
|
|
|
|
|
text-align: left !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.popularThread {
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
padding: 5px 0 3px;
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 175px;
|
|
|
|
|
max-height: 320px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
color: #800;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.popularThread .title {
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
display: block;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.popularThread .mediaContainer {
|
|
|
|
|
width: auto;
|
|
|
|
|
height: auto;
|
|
|
|
|
border: 1px solid #800;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
position: relative;
|
|
|
|
|
line-height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-03 15:00:25 +02:00
|
|
|
.popularThread .mediaContainer img, .popularThread .mediaContainer video {
|
2024-05-02 22:09:41 +02:00
|
|
|
max-width: 150px;
|
|
|
|
|
max-height: 150px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.popularThread .threadContent {
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
padding: 0 2px;
|
|
|
|
|
white-space: pre-line;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-18 15:04:30 +01:00
|
|
|
@media (max-width: 640px) {
|
2024-02-28 21:18:37 +01:00
|
|
|
.content {
|
2024-03-01 13:18:01 +01:00
|
|
|
min-width: 0;
|
2024-02-28 21:18:37 +01:00
|
|
|
width: auto;
|
2024-03-01 13:18:01 +01:00
|
|
|
padding: 10px;
|
2024-02-28 21:18:37 +01:00
|
|
|
}
|
2024-03-16 13:35:41 +01:00
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer ul {
|
|
|
|
|
margin: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer li {
|
|
|
|
|
display: inline-table;
|
|
|
|
|
line-height: 1.7;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
padding: 2px 1em 2px 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer a {
|
2024-03-22 16:15:38 +01:00
|
|
|
color: var(--homepage-infobox-link-text-color);
|
2024-03-16 13:35:41 +01:00
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 640px) {
|
|
|
|
|
.footer {
|
|
|
|
|
border-top: 1px solid;
|
|
|
|
|
width: 750px;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer li {
|
2024-03-21 22:16:24 +01:00
|
|
|
background: var(--footer-item-background-color-desktop);
|
2024-03-16 13:35:41 +01:00
|
|
|
border: 1px solid;
|
|
|
|
|
padding: 2px 1em 2px 1em;
|
|
|
|
|
border-left: none;
|
|
|
|
|
margin-top: -1px;
|
|
|
|
|
list-style: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer li:first-child {
|
|
|
|
|
border-left: 1px solid !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer a {
|
2024-03-21 16:20:10 +01:00
|
|
|
color: var(--homepage-box-bar-text-color);
|
2024-03-16 13:35:41 +01:00
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
2024-02-27 17:58:08 +01:00
|
|
|
}
|