-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
125 lines (108 loc) · 2.21 KB
/
index.css
File metadata and controls
125 lines (108 loc) · 2.21 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#post-directory-module {
z-index: 999;
}
.post-directory {
font-size: 14px;
background: #fff;
overflow: hidden;
width: 300px;
padding-bottom: 1em;
border: 1px solid #efefef;
color: #999;
}
.post-directory ul,
.post-directory ol {
padding-left: 1.5em;
list-style: none;
}
.post-directory strong {
border-left: 5px solid #999;
padding: 2px 5px 2px 15px;
}
.post-directory a {
text-decoration: none;
color: #bababa;
}
.post-directory a:hover,
.post-directory a:active,
.post-directory a.on {
color: #4183c4;
}
.posts-list {
line-height: 2;
color: #555;
list-style-type:disc;
}
.posts-list::before {
/* content: " ";*/
position: absolute;
left: 0;
top: 12px;
width: 6px;
height: 6px;
margin-left: -4px;
background: #bbb;
border-radius: 50%;
border: 1px solid #fff;
transition-duration: 0.2s;
transition-timing-function: ease-in-out;
transition-delay: 0s;
transition-property: background;
}
.posts-list-item {
border-bottom: 1px dashed #ccc;
margin: 10px;
padding: 0;
}
.posts-list-item a {
font-size: 16px;
font-weight: normal;
font-family: Lato, "PingFang SC", "Microsoft YaHei", sans-serif;
line-height: inherit;
color: #666;
}
.posts-list-meta {
font-size: 12px;
font-family: Lato, "PingFang SC", "Microsoft YaHei", sans-serif;
line-height: 2;
color: #555;
background: #fff;
}
.list-group {
padding-left: 0;
margin-bottom: 20px;
}
.list-group-item {
position: relative;
display: block;
padding: 10px 15px;
margin-bottom: -1px;
background-color: #fff;
border: 1px solid #ddd;
}
.list-group-item:first-child {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.list-group-item:last-child {
margin-bottom: 0;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
.list-group-item>.badge {
float: right;
}
.badge {
display: inline-block;
min-width: 10px;
padding: 3px 7px;
font-size: 12px;
font-weight: 700;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: middle;
background-color: #777;
border-radius: 10px;
}