-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotebook-theme.css
More file actions
109 lines (97 loc) · 2.03 KB
/
Copy pathnotebook-theme.css
File metadata and controls
109 lines (97 loc) · 2.03 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
104
105
106
107
108
109
/* research-notebook.css */
/* Page layout */
body {
background-color: #f8fafc;
font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
color: #222;
line-height: 1.6;
max-width: 960px;
margin: 2em auto;
padding: 2em;
}
/* Headers */
h1, h2, h3, h4 {
font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
font-weight: 600;
color: #1a365d;
margin-top: 1.5em;
margin-bottom: 0.6em;
border-bottom: 1px solid #e2e8f0;
padding-bottom: 0.2em;
}
/* Paragraphs */
p {
margin-bottom: 1.1em;
}
/* Code blocks */
pre {
background-color: #f3f4f6;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 0.9em;
overflow-x: auto;
font-family: "Fira Code", monospace;
font-size: 0.9em;
box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
/* Inline code */
code {
background-color: #f9fafb;
border: 1px solid #e5e7eb;
border-radius: 4px;
padding: 2px 4px;
font-family: "Fira Code", monospace;
}
/* Blockquotes */
blockquote {
background-color: #edf2f7;
border-left: 4px solid #4299e1;
padding: 0.8em 1em;
font-style: italic;
color: #2d3748;
}
/* Tables */
table {
border-collapse: collapse;
width: 100%;
margin: 1em 0;
}
th, td {
border: 1px solid #e2e8f0;
padding: 8px 12px;
}
th {
background-color: #f1f5f9;
font-weight: 600;
}
/* Figures and images */
img {
border-radius: 6px;
max-width: 100%;
display: block;
margin: 1.5em auto;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
/* Code output blocks */
.cell-output {
background-color: #ffffff;
border-left: 3px solid #60a5fa;
padding: 0.8em 1em;
margin-bottom: 1em;
border-radius: 6px;
box-shadow: 0 0 3px rgba(0,0,0,0.05);
}
/* Horizontal rule */
hr {
border: none;
border-top: 1px solid #e2e8f0;
margin: 2em 0;
}
/* Links */
a {
color: #2563eb;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}