2023-04-18 18:19:46 +00:00
|
|
|
@import 'mediawiki.skin.variables.less';
|
2017-06-06 23:38:57 +00:00
|
|
|
@import 'mediawiki.mixins';
|
|
|
|
|
|
|
|
@baseFontSize: 1em;
|
|
|
|
@thumbWidth: 80px;
|
|
|
|
@cardBorder: 1px solid rgba( 0, 0, 0, 0.2 );
|
|
|
|
|
2023-11-08 22:06:07 +00:00
|
|
|
.read-more-container-heading {
|
|
|
|
color: @color-subtle;
|
|
|
|
border-bottom: 0;
|
|
|
|
padding-bottom: 0.5em;
|
|
|
|
font-size: 0.8em;
|
|
|
|
font-weight: normal;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.read-more-container-card-list {
|
2017-06-06 23:38:57 +00:00
|
|
|
font-size: @baseFontSize;
|
|
|
|
list-style: none;
|
2023-11-08 22:06:07 +00:00
|
|
|
display: grid;
|
|
|
|
row-gap: 10px;
|
2017-06-06 23:38:57 +00:00
|
|
|
|
2023-11-08 22:06:07 +00:00
|
|
|
li {
|
|
|
|
margin-bottom: 0;
|
2017-06-06 23:38:57 +00:00
|
|
|
}
|
|
|
|
|
2023-11-08 22:06:07 +00:00
|
|
|
a,
|
|
|
|
a:hover {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
2019-01-17 03:26:36 +00:00
|
|
|
}
|
|
|
|
|
2023-11-08 22:06:07 +00:00
|
|
|
a:hover {
|
|
|
|
.cdx-card {
|
2019-01-17 03:26:36 +00:00
|
|
|
box-shadow: 0 1px 1px rgba( 0, 0, 0, 0.1 );
|
|
|
|
}
|
|
|
|
}
|
2017-06-06 23:38:57 +00:00
|
|
|
}
|
|
|
|
|
2023-11-08 22:06:07 +00:00
|
|
|
@supports ( display: grid ) {
|
|
|
|
@media all and ( min-width: @width-breakpoint-desktop ) {
|
|
|
|
.read-more-container-card-list {
|
|
|
|
grid-template-columns: repeat( 3, 1fr );
|
|
|
|
column-gap: 10px;
|
2019-01-17 03:26:36 +00:00
|
|
|
|
2023-11-08 22:06:07 +00:00
|
|
|
.read-more-container-card {
|
|
|
|
width: 100%;
|
2017-06-06 23:38:57 +00:00
|
|
|
}
|
2019-01-17 03:26:36 +00:00
|
|
|
|
2023-11-08 22:06:07 +00:00
|
|
|
.cdx-card {
|
|
|
|
height: 100%;
|
|
|
|
box-sizing: border-box;
|
2017-05-25 18:02:33 +00:00
|
|
|
}
|
2017-06-06 23:38:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|