blob: 36ede4abf6ba0d8c7ef471312be645d29f538482 (
plain)
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
|
/* activity */
.activity-event {
margin-bottom: 15px;
padding: 10px;
}
.activity-event:hover {
background: #fafafa;
}
.activity-date {
margin-left: 10px;
font-weight: normal;
color: #999;
font-size: 0.8em;
}
.activity-content {
margin-left: 55px;
}
.activity-title {
font-weight: bold;
color: #000;
border-bottom: 1px dotted #efefef;
}
.activity-description {
font-size: 0.95em;
color: #555;
margin-top: 10px;
}
.activity-description li {
list-style-type: circle;
}
.activity-description ul {
margin-top: 10px;
margin-left: 20px;
}
|