summaryrefslogtreecommitdiff
path: root/assets/css/src/activity_stream.css
blob: 54175cdf61c134370475e4a4c478c657bb46e14f (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
42
43
44
45
46
47
48
.activity-event {
    margin-bottom: 15px;
    padding: 10px
}

.activity-event:nth-child(even) {
    background: var(--activity-event-background-color);
}

.activity-event:hover {
    background: var(--activity-event-hover-color);
}

.activity-date {
    margin-left: 10px;
    font-weight: normal;
    color: var(--color-light);
}

.activity-content {
    margin-left: 55px
}

.activity-title {
    font-weight: bold;
    color: var(--activity-title-color);
    border-bottom: 1px dotted var(--activity-title-border-color);
}

.activity-description {
    color: var(--color-medium);
    margin-top: 10px
}

@media (max-width: 480px) {
    .activity-description {
        overflow: auto
    }
}

.activity-description li {
    list-style-type: circle
}

.activity-description ul {
    margin-top: 10px;
    margin-left: 20px
}