-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathlists.scss
More file actions
64 lines (55 loc) · 905 Bytes
/
lists.scss
File metadata and controls
64 lines (55 loc) · 905 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
62
63
64
ul,
ol {
@media (max-width: 640px) {
padding-left: 20px;
}
& > li {
margin-top: 0.125em;
margin-bottom: 0.125em;
}
& > li:first-child {
margin-top: 0;
}
& > li:last-child {
margin-bottom: 0;
}
&.gap {
& > li {
margin-top: 1em;
margin-bottom: 1em;
}
& > li:first-child {
margin-top: 0;
}
& > li:last-child {
margin-bottom: 0;
}
}
& > li > p.additional-info {
display: list-item;
list-style-type: circle;
margin-left: 40px;
@media (max-width: 640px) {
margin-left: 20px;
}
}
}
li > ul > li:first-child,
li > ol > li:first-child {
margin-top: 0.125em;
}
@counter-style decimal-bracket {
system: extends decimal;
prefix: "[";
suffix: "] ";
}
ol.bracket {
list-style: decimal-bracket;
}
ul.none {
list-style: none;
padding-left: 0;
& ul {
list-style: none;
}
}