-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_lists.scss
115 lines (90 loc) · 1.48 KB
/
_lists.scss
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/**
* definition lists
**/
dl {
font-size: var(--font-size-minus-0);
}
dt {
color: var(--color-heading);
font-family: var(--font-heading);
font-weight: 500;
margin-bottom: 0rem;
}
dd {
margin-left: 1em;
}
/**
* This is what happens when you don't
* document why you did something because
* it's obvious.
**/
ul {
list-style-type: square;
}
ol {
list-style-type: decimal;
}
/**
* list items should cuddle
*/
#content li {
padding-bottom: 1rem;
&:last-child {
padding-bottom: 0;
}
blockquote {
margin-top: 1rem;
}
}
main ol,
main ul {
padding-left: 1em;
}
/**
* List of posts
**/
.posts-list {
list-style-position: inside;
list-style-type: none;
padding-left: 0;
}
.posts-list-entry {
}
.posts-entry {
}
.posts-entry-title {
font-family: var(--font-heading);
font-weight: 600;
margin: 0;
}
.posts-entry-title a {
color: var(--color-gray-30);
}
.posts-entry-summary {
font-family: var(--font-body);
font-size: var(--font-size-minus-0);
color: var(--color-gray-40);
}
.posts-entry-date {
font-family: var(--font-body);
font-weight: 400;
color: var(--color-gray-40);
font-size: var(--font-size-minus-1);
font-style: italic;
}
.posts-entry-tag {
font-family: var(--font-heading);
font-size: var(--font-size-minus-1);
}
.posts-entry-footer {
line-height: 1;
}
.posts-entry-summary,
.posts-entry-summary p {
display: block;
margin-bottom: 0;
}
.tagslist-tags-link {}
.tagslist-tags {
color: var(--color-red)
}