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
88
|
.cw-block-code {
pre {
margin-bottom: 0;
}
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: var(--dark-gray-color-5);
color: black;
border: solid thin var(--color--courseware-border-default);
}
.hljs-comment,
.hljs-quote,
.hljs-variable {
color: var(--dark-green);
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-selector-class,
.hljs-built_in,
.hljs-name,
.hljs-tag {
color: var(--color--blue-1);
font-weight: 600;
}
.hljs-string,
.hljs-title,
.hljs-section,
.hljs-attribute,
.hljs-literal,
.hljs-template-tag,
.hljs-template-variable,
.hljs-type,
.hljs-addition {
color: var(--orange-80);
font-weight: 400;
}
.hljs-deletion,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-meta {
color: var(--petrol);
font-weight: 400;
}
.hljs-doctag {
color: var(--dark-gray-color-75);
font-weight: 400;
}
.hljs-attr {
color: var(--red);
font-weight: 400;
}
.hljs-symbol,
.hljs-bullet,
.hljs-link {
color: var(--petrol);
font-weight: 400;
}
.hljs-emphasis {
font-style: italic;
font-weight: 400;
}
.hljs-strong {
font-weight: 600;
}
.code-lang {
background: var(--color--courseware-background-highlight);
border: solid thin var(--color--courseware-border-default);
border-top: none;
padding: 5px 10px;
text-align: right;
color: var(--color--font-secondary);
font-family: monospace;
text-transform: full-width;
}
}
|