2024-04-30 12:16:09 +02:00
|
|
|
@define-mixin fix-interaction $type {
|
|
|
|
.interaction--$(type) {
|
2023-11-23 17:07:49 +01:00
|
|
|
padding: var(--padding-tiny) var(--padding-small);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-30 12:16:09 +02:00
|
|
|
@mixin if-phone {
|
2023-11-23 17:07:49 +01:00
|
|
|
.metabar__interactions {
|
|
|
|
display: grid;
|
|
|
|
width: 100%;
|
|
|
|
grid-template-columns: repeat(5, 1fr);
|
|
|
|
|
2024-04-30 12:16:09 +02:00
|
|
|
@mixin fix-interaction fave;
|
|
|
|
@mixin fix-interaction upvote;
|
|
|
|
@mixin fix-interaction downvote;
|
|
|
|
@mixin fix-interaction hide;
|
2023-11-23 17:07:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.metabar__interactions * {
|
|
|
|
align-self: center;
|
|
|
|
justify-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.metabar__mobile-separator {
|
|
|
|
height: 1px;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: var(--padding-small);
|
|
|
|
margin-bottom: var(--padding-normal);
|
|
|
|
background: var(--primary-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.metabar__navigation {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(4, 1fr);
|
|
|
|
padding: var(--padding-small);
|
|
|
|
}
|
|
|
|
|
|
|
|
.metabar__navigation a {
|
|
|
|
align-self: center;
|
|
|
|
justify-self: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.metabar {
|
2024-04-30 12:16:09 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2023-11-23 17:07:49 +01:00
|
|
|
line-height: var(--block-header-height);
|
|
|
|
}
|
|
|
|
|
|
|
|
.metabar a,
|
|
|
|
.metabar .score {
|
|
|
|
padding: var(--padding-small);
|
|
|
|
}
|
|
|
|
|
|
|
|
.metabar__user-credit {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.metabar__mobile-info {
|
|
|
|
& td {
|
|
|
|
padding: var(--padding-small);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.badges {
|
|
|
|
display: inline-block;
|
|
|
|
}
|