-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (50 loc) · 714 Bytes
/
style.css
File metadata and controls
61 lines (50 loc) · 714 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
body {
color: #24292f;
font-family: Arial, sans;
}
a {
text-decoration: none;
color: #0a66c2;
}
a:hover {
text-decoration: underline;
}
code {
font-family: mono;
background-color: #eee;
padding: 3px;
}
code span.co {
color: #888;
}
code span.st, span.dv, span.fl, span.bn {
color: #5b8ab9;
}
code span.ch, span.dt {
color: red;
}
code span.cf, span.im {
color: green;
}
pre {
margin-left: 20px;
margin-bottom: 20px;
position: relative;
}
pre::before {
background-color: #0a84ff;
content: " ";
position: absolute;
left: -3px;
top: 0;
bottom: 0;
width: 3px;
display: block;
}
pre code {
display: flex;
flex-direction: column;
}
h3 {
margin-top: 2rem;
}