-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.module.css
More file actions
95 lines (80 loc) · 1.45 KB
/
index.module.css
File metadata and controls
95 lines (80 loc) · 1.45 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
85
86
87
88
89
90
91
92
93
94
95
.title {
margin-bottom: var(--space-2xs);
}
.changelog {
max-height: 600px;
overflow: hidden;
padding-bottom: var(--space-m);
padding-left: var(--space-3xs);
}
.changelog:global(.all) {
max-height: none;
}
.source {
font-size: var(--fs--1);
margin-bottom: var(--space-xs);
}
.source,
.source a {
color: var(--text-color-light);
}
.source a:hover {
color: var(--link-color);
}
.content {
border-left: var(--border-width) solid var(--border-color);
padding-left: var(--space-s);
}
.content p {
margin-bottom: var(--space-2xs);
}
.content > p:first-child,
.content > p:first-child + p {
display: none;
}
.content blockquote {
padding-left: 0;
font-size: var(--fs--1);
margin-bottom: 0;
}
.content blockquote::before {
display: none;
}
.content h2,
.content h3,
.content h4 {
position: relative;
margin-bottom: 0;
font-size: var(--fs-0);
line-height: var(--fs-1);
}
.content h2::before,
.content h3::before,
.content h4::before {
content: '';
width: 0.5rem;
height: 0.5rem;
border-radius: 50%;
display: inline-block;
background: var(--border-color);
position: absolute;
left: -1.55rem;
top: 0.5rem;
}
.content h2,
.content h3 {
font-size: var(--fs-1);
background: none;
padding: 0;
margin-left: 0;
margin-top: var(--space-3xs);
margin-bottom: var(--space-m);
}
.content ul {
font-size: var(--fs--1);
line-height: var(--fs-1);
margin-left: var(--space-3xs);
}
.content ul li {
margin-bottom: 0;
}