blob: aab54d9d0e6fdab79d74c9cffc5ac831e20b29b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
.utterances-frame {
width: 100%;
}
.comments {
margin-top: 2rem;
border-top: var(--divider-color) solid 0.5px;
border-bottom: var(--divider-color) solid 0.5px;
padding-top: 2rem;
padding-bottom: 2rem;
iframe {
margin: 0;
border: none;
aspect-ratio: inherit;
width: 100%;
max-width: 100%;
}
.load-comments-button {
display: block;
cursor: pointer;
margin: 0.5em auto;
border: none;
background: none;
padding-block: 0.5em;
padding-inline: 1em;
color: inherit;
font-size: 0.95rem;
font-family: var(--sans-serif-font);
text-decoration: none;
}
}
|