-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMarkdown.css
More file actions
84 lines (69 loc) · 1.5 KB
/
Markdown.css
File metadata and controls
84 lines (69 loc) · 1.5 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
.markdown {
word-wrap: break-word;
>*:first-child {
margin-top: 0 !important;
}
>*:last-child {
margin-bottom: 0 !important;
}
a {
text-decoration: underline 1px;
}
a:hover {
text-decoration: underline 2px;
}
hr {
background-color: var(--neutral-400);
height: 2px;
margin: 2rem 1rem;
border: none;
}
p,
blockquote,
ul,
ol,
dl,
table,
pre,
details {
margin-bottom: 2rem;
}
li li {
margin-left: 2rem;
}
p>code {
background-color: light-dark(hsl(230, 1%, 98%), hsl(220, 13%, 18%));
outline: 0.15em solid light-dark(hsl(230, 1%, 98%), hsl(220, 13%, 18%));
}
pre:has(code) {
outline: 1rem solid light-dark(hsl(230, 1%, 98%), hsl(220, 13%, 18%));
background-color: light-dark(hsl(230, 1%, 98%), hsl(220, 13%, 18%));
overflow: auto;
}
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
display: block;
height: 10px;
}
::-webkit-scrollbar-button:vertical:increment {
background-color: var(--neutral-400);
}
::-webkit-scrollbar-track-piece {
background-color: var(--neutral-400);
-webkit-border-radius: 3px;
}
::-webkit-scrollbar-thumb:vertical {
height: 50px;
background-color: var(--neutral-400);
-webkit-border-radius: 3px;
}
::-webkit-scrollbar-thumb:horizontal {
width: 50px;
background-color: var(--neutral-400);
-webkit-border-radius: 3px;
}
}