aboutsummaryrefslogtreecommitdiff
path: root/src/components/BlockQuote.module.css
blob: efa88e2e37af5e215c530ba07270505985963de6 (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
34
35
36
37
38
.qt {
    position:relative;
    border-radius:10px;
    padding:20px;
    border: 1px dashed;
    margin-left: 6%;
    margin-right: 6%;
}
/* mobile */
@media screen and (max-width: 996px) {
    .qt {
        margin-left:0;
        margin-right:0;
    }
}

.qt:before {
    position:absolute;
    left:2%;
    top:-18px;
    box-sizing:border-box;
    content: "";
    mask: url("bxs--quote-left.svg") no-repeat 50% 50%;
    mask-size: cover;
    background-color: var(--ifm-font-color-secondary);
    padding-top:12px;
    width: 32px;
    height:32px;
}

.qt cite {
    font-weight: bold;
    display:block;
    font-style:normal;
    margin-bottom: var(--ifm-paragraph-margin-bottom);
    font-size: calc(var(--ifm-font-size-base)*1.05);
}