-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
45 lines (39 loc) · 728 Bytes
/
index.css
File metadata and controls
45 lines (39 loc) · 728 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
.error {
font-family: Poppins, sans-serif;
background: #ffDDDD;
color: #ff0000;
padding: 20px;
}
.markdown {
font-family: Lato, sans-serif;
color: #2c3332;
}
.markdown h1,
.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
font-family: Poppins, sans-serif;
}
.markdown pre {
box-sizing: border-box;
background: rgb(44, 51, 50);
border-radius: 20px;
padding: 1rem;
color: white;
width: 100%;
overflow: auto;
font-family: "Source Code Pro", monospace;
}
.markdown a {
color: #BF265E;
}
.markdown p code {
background: #c8d0d0;
padding: 3px;
border-radius: 3px;
}
.markdown code {
font-family: "Source Code Pro", monospace;
}