2021-12-24 11:00:43 +01:00
|
|
|
.comments {
|
|
|
|
|
margin: 0;
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
padding: 0;
|
|
|
|
|
background: $theme-comments-background;
|
|
|
|
|
box-shadow: $theme-comments-shadow;
|
|
|
|
|
color: $theme-comments-color;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comments > .title {
|
|
|
|
|
padding: .25rem 1rem;
|
|
|
|
|
margin: 0;
|
2023-04-03 22:44:55 +02:00
|
|
|
font-size: 1.5rem;
|
2021-12-24 11:00:43 +01:00
|
|
|
font-variant: small-caps;
|
|
|
|
|
font-weight: bold;
|
2021-12-24 20:14:03 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
2021-12-24 11:00:43 +01:00
|
|
|
letter-spacing: 0.05ch;
|
|
|
|
|
background: $theme-comments-title-background;
|
|
|
|
|
color: $theme-comments-title-color;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comments > .content {
|
|
|
|
|
margin: 0px;
|
|
|
|
|
padding: 1rem 1rem;
|
2022-02-25 18:53:06 +01:00
|
|
|
display: flow-root;
|
2021-12-24 11:00:43 +01:00
|
|
|
}
|
2022-10-28 22:31:04 +02:00
|
|
|
|
|
|
|
|
.comments > .content > .privacy {
|
|
|
|
|
margin: 0px;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
|
|
|
|
|
column-gap: .5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comments > .content > .privacy > button {
|
|
|
|
|
display: block;
|
|
|
|
|
padding: .5rem;
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
font-variant: small-caps;
|
|
|
|
|
font-weight: bold;
|
2023-04-03 22:44:55 +02:00
|
|
|
}
|