2022-07-29 22:34:12 +01:00
|
|
|
/*
|
|
|
|
This file is (C) Captain ALM
|
|
|
|
Under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License
|
|
|
|
*/
|
2022-07-28 01:56:00 +01:00
|
|
|
*{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
main{
|
2022-07-29 22:34:12 +01:00
|
|
|
padding-top: 70px;
|
2022-07-28 01:56:00 +01:00
|
|
|
padding-left: 6px;
|
|
|
|
}
|
|
|
|
.no-dec{
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.no-lst-style{
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
.centered{
|
|
|
|
text-align: center;
|
|
|
|
}
|
2022-07-30 15:07:10 +01:00
|
|
|
.content, .content > *{
|
2022-07-28 01:56:00 +01:00
|
|
|
word-break: break-word;
|
|
|
|
-ms-word-wrap: break-word;
|
|
|
|
word-wrap: break-word;
|
2022-07-30 15:07:10 +01:00
|
|
|
}
|
|
|
|
.content > p, .content > h1, .content > h2, .content > h3, .content > h4, .content > h5, .content > h6{
|
2022-07-28 01:56:00 +01:00
|
|
|
margin-top: 0.5em;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
.header{
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
2022-07-29 22:34:12 +01:00
|
|
|
z-index: 100;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 0 0 2px;
|
2022-07-28 01:56:00 +01:00
|
|
|
}
|
|
|
|
.home-button, .sort-button{
|
|
|
|
display: inline-block;
|
2022-07-30 01:23:44 +01:00
|
|
|
width: 84px;
|
2022-08-16 23:04:17 +01:00
|
|
|
height: 66px;
|
2022-07-28 01:56:00 +01:00
|
|
|
overflow: hidden;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.sort-button{
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.home-button > div, .sort-button > div{
|
|
|
|
display: inline;
|
2022-07-29 22:34:12 +01:00
|
|
|
font-size: 48px;
|
2022-07-28 01:56:00 +01:00
|
|
|
padding: 10px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
.nav{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
max-height: 0;
|
|
|
|
}
|
2022-08-17 13:04:03 +01:00
|
|
|
.vnav{
|
|
|
|
max-height: none;
|
|
|
|
top: 0;
|
|
|
|
position: relative;
|
|
|
|
float: right;
|
|
|
|
width: auto;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2022-07-28 01:56:00 +01:00
|
|
|
.so-pane{
|
|
|
|
display: none;
|
|
|
|
overflow: hidden;
|
|
|
|
position: fixed;
|
|
|
|
max-height: 0;
|
|
|
|
}
|
2022-07-29 22:34:12 +01:00
|
|
|
.so-pane > form > div{
|
|
|
|
display: table-row;
|
|
|
|
background-color: transparent;
|
|
|
|
box-sizing: inherit;
|
|
|
|
max-width: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.so-pane > form > div > div, .so-pane > form > div > span{
|
|
|
|
background-color: transparent;
|
|
|
|
box-sizing: inherit;
|
|
|
|
padding: 2px;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
.so-pane > form > div > div{
|
|
|
|
display: table-cell;
|
|
|
|
max-width: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
.so-pane > form > div > span{
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.so-pane-full{
|
|
|
|
display: table-caption !important;
|
|
|
|
caption-side: bottom;
|
|
|
|
}
|
|
|
|
.so-pane > form > div > * > *{
|
|
|
|
max-width: 100%;
|
|
|
|
width: 100%;
|
2022-07-28 01:56:00 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
font-size: 16px;
|
2022-07-29 22:34:12 +01:00
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
.so-pane > form > div > div > *{
|
2022-07-28 01:56:00 +01:00
|
|
|
text-align: left;
|
|
|
|
}
|
2022-07-29 22:34:12 +01:00
|
|
|
.so-pane > form > div > div > label{
|
2022-07-28 01:56:00 +01:00
|
|
|
background-color: transparent;
|
2022-07-29 22:34:12 +01:00
|
|
|
text-align: center;
|
2022-07-28 01:56:00 +01:00
|
|
|
}
|
2022-07-29 22:34:12 +01:00
|
|
|
.nav-menu, .sort-menu{
|
2022-07-28 01:56:00 +01:00
|
|
|
display: none;
|
|
|
|
}
|
2022-08-17 13:04:03 +01:00
|
|
|
.menu a, .vmenu a{
|
2022-07-28 01:56:00 +01:00
|
|
|
display: block;
|
2022-08-16 23:04:17 +01:00
|
|
|
padding: 24px 16px;
|
2022-07-28 01:56:00 +01:00
|
|
|
}
|
2022-08-17 13:04:03 +01:00
|
|
|
.vmenu li{
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.vmenu a:hover{
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2022-07-28 01:56:00 +01:00
|
|
|
.hmb{
|
|
|
|
cursor: pointer;
|
|
|
|
float: right;
|
|
|
|
background-color: transparent;
|
2022-08-17 00:23:50 +01:00
|
|
|
padding: 32px 20px;
|
2022-07-28 01:56:00 +01:00
|
|
|
}
|
|
|
|
.hmb-line{
|
|
|
|
display: block;
|
|
|
|
height: 2px;
|
|
|
|
position: relative;
|
|
|
|
width: 24px;
|
|
|
|
}
|
|
|
|
.hmb-line::before, .hmb-line::after{
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
|
|
transition: all .1s ease-out;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.hmb-line::before{
|
|
|
|
top: 5px;
|
|
|
|
}
|
|
|
|
.hmb-line::after{
|
|
|
|
top: -5px;
|
|
|
|
}
|
2022-08-17 13:04:03 +01:00
|
|
|
.nav-menu:checked ~ #nav, .nav-open{
|
2022-07-28 01:56:00 +01:00
|
|
|
max-height: 100%;
|
|
|
|
}
|
2022-07-29 22:34:12 +01:00
|
|
|
.nav-menu:checked ~ .hmb .hmb-line, .nav-open-hmb .hmb-line{
|
2022-07-28 01:56:00 +01:00
|
|
|
background: transparent;
|
|
|
|
}
|
2022-07-29 22:34:12 +01:00
|
|
|
.nav-menu:checked ~ .hmb .hmb-line::before, .nav-open-hmb .hmb-line::before{
|
2022-07-28 01:56:00 +01:00
|
|
|
transform: rotate(-45deg);
|
|
|
|
top:0;
|
|
|
|
}
|
2022-07-29 22:34:12 +01:00
|
|
|
.nav-menu:checked ~ .hmb .hmb-line::after, .nav-open-hmb .hmb-line::after{
|
2022-07-28 01:56:00 +01:00
|
|
|
transform: rotate(45deg);
|
|
|
|
top:0;
|
|
|
|
}
|
2022-07-29 22:34:12 +01:00
|
|
|
.sort-menu:checked ~ .so-pane, .so-pane-open{
|
2022-07-28 01:56:00 +01:00
|
|
|
display: block;
|
2022-07-29 22:34:12 +01:00
|
|
|
z-index: 101;
|
2022-07-28 01:56:00 +01:00
|
|
|
box-sizing: content-box;
|
|
|
|
position: fixed;
|
2022-07-29 22:34:12 +01:00
|
|
|
text-align: center;
|
2022-08-17 00:19:53 +01:00
|
|
|
top: 70px;
|
2022-07-31 00:20:06 +01:00
|
|
|
left: 20px;
|
2022-07-28 01:56:00 +01:00
|
|
|
max-height: 100%;
|
2022-07-29 22:34:12 +01:00
|
|
|
width: 230px;
|
2022-07-28 01:56:00 +01:00
|
|
|
height: auto;
|
2022-07-29 22:34:12 +01:00
|
|
|
-webkit-border-bottom-left-radius: 8px;
|
|
|
|
-webkit-border-bottom-right-radius: 8px;
|
|
|
|
-moz-border-radius-bottomleft: 8px;
|
|
|
|
-moz-border-radius-bottomright: 8px;
|
|
|
|
border-bottom-left-radius: 8px;
|
|
|
|
border-bottom-right-radius: 8px;
|
2022-07-28 01:56:00 +01:00
|
|
|
padding: 4px;
|
|
|
|
border-style: solid;
|
2022-07-29 22:34:12 +01:00
|
|
|
border-width: 0 2px 2px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.sort-menu:checked ~ .so-pane > form, .so-pane-open > form{
|
|
|
|
display: table;
|
|
|
|
box-sizing: inherit;
|
2022-07-28 01:56:00 +01:00
|
|
|
}
|
2022-08-01 01:39:11 +01:00
|
|
|
.main-box > div, footer{
|
2022-07-29 22:34:12 +01:00
|
|
|
max-width: 100%;
|
|
|
|
margin: 3px 0;
|
|
|
|
padding: 2px;
|
|
|
|
box-sizing: content-box;
|
|
|
|
}
|
|
|
|
.item-table{
|
|
|
|
display: table;
|
|
|
|
box-sizing: content-box;
|
|
|
|
background-color: transparent;
|
|
|
|
-webkit-border-radius: 32px;
|
|
|
|
-moz-border-radius: 32px;
|
|
|
|
border-radius: 32px;
|
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
|
|
|
}
|
|
|
|
.flex-col{
|
2022-07-28 01:56:00 +01:00
|
|
|
display: -webkit-box;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: flex;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-moz-box-orient: vertical;
|
|
|
|
-webkit-box-direction: normal;
|
|
|
|
-moz-box-direction: normal;
|
|
|
|
-webkit-flex-direction: column;
|
|
|
|
-ms-flex-direction: column;
|
|
|
|
flex-direction: column;
|
|
|
|
-webkit-align-content: center;
|
|
|
|
align-content: center;
|
2022-07-29 22:34:12 +01:00
|
|
|
max-width: 100%;
|
2022-07-28 01:56:00 +01:00
|
|
|
width: 100%;
|
2022-07-29 22:34:12 +01:00
|
|
|
overflow: hidden;
|
2022-07-28 01:56:00 +01:00
|
|
|
}
|
|
|
|
.item-table > div{
|
|
|
|
display: table-row;
|
|
|
|
box-sizing: inherit;
|
2022-07-29 22:34:12 +01:00
|
|
|
max-width: 100%;
|
2022-07-28 01:56:00 +01:00
|
|
|
width: 100%;
|
|
|
|
}
|
2022-07-29 22:34:12 +01:00
|
|
|
.flex-row, .item-table > div{
|
2022-07-28 01:56:00 +01:00
|
|
|
display: -webkit-box;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: flex;
|
|
|
|
-webkit-box-orient: horizontal;
|
|
|
|
-moz-box-orient: horizontal;
|
|
|
|
-webkit-box-direction: normal;
|
|
|
|
-moz-box-direction: normal;
|
|
|
|
-webkit-flex-direction: row;
|
|
|
|
-ms-flex-direction: row;
|
|
|
|
flex-direction: row;
|
|
|
|
-ms-flex-wrap: wrap;
|
|
|
|
-webkit-flex-wrap: wrap;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
-webkit-justify-content: center;
|
|
|
|
justify-content: center;
|
2022-07-29 22:34:12 +01:00
|
|
|
max-width: 100%;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.item-table > div > div > div{
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
.item-table-caption, .so-pane-caption{
|
|
|
|
display: table-caption !important;
|
|
|
|
caption-side: bottom;
|
|
|
|
}
|
|
|
|
.item-table-full, .item-table-360, .item-table-caption, .so-pane-caption{
|
|
|
|
background-color: transparent;
|
|
|
|
box-sizing: inherit;
|
|
|
|
}
|
|
|
|
.item-table-full{
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: top;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.item-table-360{
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
max-width: 360px;
|
|
|
|
width: 360px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-align: center;
|
2022-07-28 01:56:00 +01:00
|
|
|
}
|
|
|
|
.image-box > a{
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
margin: 2px;
|
|
|
|
}
|
2022-08-17 13:04:03 +01:00
|
|
|
@media (min-width: 600px){
|
2022-07-29 22:34:12 +01:00
|
|
|
.main-box > div{
|
|
|
|
padding: 12px;
|
2022-07-28 01:56:00 +01:00
|
|
|
}
|
2022-08-01 01:39:11 +01:00
|
|
|
footer{
|
2022-07-29 22:34:12 +01:00
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
.item-table > div{
|
|
|
|
-ms-flex-wrap: nowrap;
|
|
|
|
-webkit-flex-wrap: nowrap;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
}
|
|
|
|
.item-table-full{
|
|
|
|
max-width: -webkit-calc(100% - 361px);
|
|
|
|
max-width: -moz-calc(100% - 361px);
|
|
|
|
max-width: calc(100% - 361px);
|
|
|
|
width: -webkit-calc(100% - 361px);
|
|
|
|
width: -moz-calc(100% - 361px);
|
|
|
|
width: calc(100% - 361px);
|
2022-07-28 01:56:00 +01:00
|
|
|
}
|
|
|
|
.image-box > a{
|
|
|
|
border-width: 4px;
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
}
|
2022-08-17 00:19:53 +01:00
|
|
|
@media (min-width: 680px){
|
2022-07-28 01:56:00 +01:00
|
|
|
.nav{
|
|
|
|
max-height: none;
|
|
|
|
top: 0;
|
|
|
|
position: relative;
|
|
|
|
float: right;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
.menu li{
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.menu a:hover{
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
.hmb{
|
|
|
|
display: none;
|
|
|
|
}
|
2022-07-29 22:34:12 +01:00
|
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
|
|
.item-table-full, .item-table-360 {
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
.item-table-caption{
|
|
|
|
display: block !important;
|
|
|
|
}
|
2022-07-28 01:56:00 +01:00
|
|
|
}
|