mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 02:24:04 +00:00
30 lines
563 B
Plaintext
30 lines
563 B
Plaintext
/*
|
|
* Citizen - Related Articles Styles
|
|
* https://starcitizen.tools
|
|
*/
|
|
|
|
@import '../resources/variables.less';
|
|
@import '../resources/mixins.less';
|
|
|
|
.ext-related-articles-card-list {
|
|
margin-top: 0;
|
|
padding-top: @content-margin-top; // Give room for shadows and translate
|
|
overflow: visible; // Show shadow
|
|
|
|
.ext-related-articles-card {
|
|
border: 0!important;
|
|
border-radius: 0!important;
|
|
.boxshadow(1);
|
|
transition: @transition-transform-quick;
|
|
|
|
&:hover {
|
|
.boxshadow(2);
|
|
transform:translateY(-2px);
|
|
}
|
|
|
|
> a:hover {
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
}
|