-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarkdown.css
76 lines (65 loc) · 1.38 KB
/
markdown.css
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
/* Typography */
body {
font-family: 'JetBrains Mono', Monaco, 'Courier New', Courier, monospace;
background-color: #1a1b26;
color: #e7ecf8;
line-height: 1.6;
margin: 0;
padding: 2em;
}
h1, h2, h3 {
font-family: 'JetBrains Mono', Monaco, 'Courier New', Courier, monospace;
color: #db4662;
margin-bottom: 0.5em;
}
h1 {
font-size: 2.5em;
}
h2 {
font-size: 2em;
}
h3 {
font-size: 1.5em;
}
/* Link styles */
a {
color: #78ad3e; /* Link color */
text-decoration: none; /* No underline by default */
transition: color 0.3s ease; /* Smooth hover transition */
}
a:hover {
color: #638d36; /* Change color on hover */
text-decoration: none; /* No underline by default */
}
/* Lists */
ul, ol {
padding-left: 20px;
list-style: none;
}
ul li::before {
content: '•';
color: #f68f53;
display: inline-block;
width: 1em;
margin-left: -1em;
}
/* Inline Code and Preformatted Blocks */
code {
font-family: 'JetBrains Mono', Monaco, 'Courier New', Courier, monospace;
background: #1a1b26;
color: #ab85f2;
padding: 2px 4px;
border-radius: 3px;
}
pre {
background: #1a1b26;
color: #55bfd1;
padding: 1em;
border-radius: 5px;
overflow-x: auto;
}
/* General Layout */
#markdown-content {
max-width: 800px;
margin: 0 auto;
}