custom.css 1.21 KB
Newer Older
chenzk's avatar
v1.0  
chenzk committed
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
html {
    font-size: 16px;
}

h1 {
    font-size: 1.75rem;
    line-height: 2.5rem;
}

h2 {
    font-size: 1.5rem;
    line-height: 2rem;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

h4 {
    font-size: 1.125rem;
    line-height: 1.5rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.75rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 1.875rem;
    margin-bottom: 1rem;
}

p strong {
    font-weight: 500;
}

p:target {
    background-color: var(--color-highlight-on-target);
}

details.sd-dropdown summary.sd-summary-title {
    flex-direction: row-reverse;
    font-weight: 500;
    padding-left: 0;
}

details.sd-dropdown summary.sd-summary-title code.literal {
    font-weight: bolder;
    filter: brightness(95%);
}

details.sd-dropdown summary.sd-summary-title span.sd-summary-state-marker {
    padding-left: 0.5em;
    padding-right: 0.5em
}

details.sd-dropdown div.sd-summary-content {
    padding-left: 2.5em;
}

pre.terminal {
    font-size: 12px !important;
    line-height: 16px;
    background-color: black;
    color: white;
    padding: .5em;
    text-wrap: wrap;
    word-break: break-all;
}

pre.terminal span.system {
    color: greenyellow
}

pre.terminal span.user {
    color: yellowgreen
}