Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rss.less « stylesheets « RssWidget « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e3bcdcd028b0e87b3d7ea01d9dbd37a44e5e1c6f (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
.rss ul {
    list-style: none outside none;
    padding: 0;
}

.rss li {
    line-height: 140%;
    margin: 0.5em 0 1em;
}

.rss-title, .rss-date {
    float: left;
    font-size: 14px;
    line-height: 140%;
}

.rss-title {
    color: #2583AD;
    margin: 0 0.5em 0.2em 0;
    font-weight: bold;
}

.rss-date {
    color: #999999;
    margin: 0;
}

.rss-content, .rss-description {
    clear: both;
    line-height: 1.5em;
    font-size: 13px;
    color: #333333;
    .screen-reader-text {
        display: none;
    }
}

/* hide changing blog post title and date in UI test */
.uiTest .rss-title, .uiTest .rss-date {
    visibility:hidden;

}