-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
37 lines (34 loc) · 943 Bytes
/
Copy pathstyles.css
File metadata and controls
37 lines (34 loc) · 943 Bytes
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
/* styles.css */
.repo-explainer-container {
margin-top: 16px;
margin-bottom: 16px;
background-color: var(--bgColor-muted, #f6f8fa);
border: 1px solid var(--borderColor-default, #d0d7de);
border-radius: 6px;
padding: 16px;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
}
.repo-explainer-header {
font-weight: 600;
margin-bottom: 8px;
font-size: 14px;
color: var(--fgColor-default, #24292f);
}
.repo-explainer-content {
font-size: 14px;
line-height: 1.5;
color: var(--fgColor-default, #24292f);
}
/* Dark mode support (GitHub uses specific variables) */
@media (prefers-color-scheme: dark) {
.repo-explainer-container {
background-color: #0d1117; /* GitHub Dark Dimmed bg */
border-color: #30363d;
}
.repo-explainer-header {
color: #c9d1d9;
}
.repo-explainer-content {
color: #c9d1d9;
}
}