-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (39 loc) · 675 Bytes
/
style.css
File metadata and controls
47 lines (39 loc) · 675 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
38
39
40
41
42
43
44
45
46
47
body {
background-color: #1A1A1F;
color: #E5E5E5;
}
a {
color: #4E82F0;
}
h1, h2, h3, h4, h5, h6 {
color: #E5E5E5;
border-bottom: 1px solid #4E82F0;
}
table {
border-collapse: collapse;
}
table th, table td {
border: 1px solid #4E82F0;
padding: 0.5em 1em;
}
pre, code {
background-color: #2B2B2B;
color: #E5E5E5;
font-family: "Fira Code", monospace;
border: 1px solid #4E82F0;
padding: 0.5em;
}
blockquote {
background-color: #2B2B2B;
color: #E5E5E5;
border-left: 5px solid #4E82F0;
padding: 1em;
margin: 0;
}
hr {
border: 1px solid #4E82F0;
}
img {
max-width: 100%;
height: auto;
}