2019-08-16 06:35:44 +00:00
|
|
|
/*
|
|
|
|
* Citizen - File Page Styles
|
|
|
|
* https://starcitizen.tools
|
|
|
|
*/
|
|
|
|
|
|
|
|
@import '../resources/variables.less';
|
|
|
|
@import '../resources/mixins.less';
|
|
|
|
|
|
|
|
#filetoc {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow: auto;
|
|
|
|
white-space: nowrap;
|
|
|
|
display: flex;
|
|
|
|
border-color: @base-80;
|
|
|
|
transition: @transition-margin,
|
|
|
|
@transition-padding;
|
|
|
|
|
|
|
|
li {
|
|
|
|
padding: 0;
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
a {
|
|
|
|
padding: @margin-side / 2 @margin-side;
|
|
|
|
display: block;
|
|
|
|
transition: @transition-background-quick;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: @base-80;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fullImageLink {
|
|
|
|
margin: 0 @negative-margin;
|
2019-08-16 17:53:59 +00:00
|
|
|
max-width: @footer-width - 10px; // 1280px - image size 4
|
2019-08-16 06:35:44 +00:00
|
|
|
background-color: @base-90;
|
|
|
|
|
|
|
|
>a {
|
|
|
|
display: block;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
>img {
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 100%;
|
|
|
|
height: auto;
|
|
|
|
display: block;
|
|
|
|
.boxshadow(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mw-filepage-resolutioninfo {
|
|
|
|
padding: @margin-side / 2 @margin-side;
|
|
|
|
border: 1px solid @base-80;
|
|
|
|
text-align: center;
|
|
|
|
transition: @transition-margin,
|
|
|
|
@transition-padding;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fullMedia {
|
|
|
|
padding: @margin-side / 2 @margin-side;
|
|
|
|
border: 1px solid @base-80;
|
|
|
|
border-top: 0;
|
|
|
|
background-color: @base-90;
|
|
|
|
font-size: smaller;
|
|
|
|
text-align: center;
|
|
|
|
transition: @transition-margin;
|
|
|
|
|
|
|
|
.mw-mmv-filepage-buttons {
|
|
|
|
margin-top: @margin-side / 2;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: @screen2) {
|
|
|
|
.fullImageLink {
|
|
|
|
margin: 0~"calc((100vw - @{page-width}) / -2)";
|
|
|
|
|
|
|
|
.mw-filepage-resolutioninfo,
|
|
|
|
.fullMedia {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: @screen1) {
|
|
|
|
|
|
|
|
#filetoc,
|
|
|
|
.fullImageLink,
|
|
|
|
.fullMedia {
|
|
|
|
margin: 0 -@margin-side;
|
|
|
|
}
|
|
|
|
|
|
|
|
#filetoc {
|
|
|
|
padding: 0 @margin-side;
|
|
|
|
}
|
|
|
|
}
|