-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
103 lines (98 loc) · 1.7 KB
/
index.css
File metadata and controls
103 lines (98 loc) · 1.7 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
background-color: #f9f9fa;
color: #1c1f23;
}
/* Custom scrollbar for markdown preview */
.markdown-body::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.markdown-body::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 3px;
}
.markdown-body::-webkit-scrollbar-track {
background: transparent;
}
/* Custom scrollbar for Dark elements (Terminal) */
.custom-scrollbar-dark::-webkit-scrollbar {
width: 8px;
height: 8px;
}
.custom-scrollbar-dark::-webkit-scrollbar-thumb {
background: #4b5563;
border-radius: 4px;
}
.custom-scrollbar-dark::-webkit-scrollbar-track {
background: #1f2937;
}
/* Highlight.js Minimal GitHub-like Theme for CodeRunner */
/* Reset first */
.hljs {
display: block;
overflow-x: auto;
padding: 0;
color: #24292e;
background: transparent;
}
.hljs-comment,
.hljs-quote {
color: #6a737d;
font-style: italic;
}
.hljs-doctag,
.hljs-keyword,
.hljs-formula {
color: #d73a49;
}
.hljs-section,
.hljs-name,
.hljs-selector-tag,
.hljs-deletion,
.hljs-subst {
color: #22863a;
}
.hljs-literal {
color: #005cc5;
}
.hljs-string,
.hljs-regexp,
.hljs-addition,
.hljs-attribute,
.hljs-meta .hljs-string {
color: #032f62;
}
.hljs-built_in,
.hljs-class .hljs-title {
color: #6f42c1;
}
.hljs-attr,
.hljs-variable,
.hljs-template-variable,
.hljs-type,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-number {
color: #005cc5;
}
.hljs-symbol,
.hljs-bullet,
.hljs-link,
.hljs-meta,
.hljs-selector-id,
.hljs-title {
color: #6f42c1;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
.hljs-link {
text-decoration: underline;
}