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

cloud.less « stylesheets « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a0750c6497fc7dea7ed2b5652db08543891cae33 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@-moz-document url-prefix() {
  // see bug in Firefox 30+
  // https://github.com/piwik/piwik/issues/5242
  // https://bugzilla.mozilla.org/show_bug.cgi?id=1012640
  .tagCloud + .dataTableFeatures {
    clear: left;
  }
  .tagCloud .word {
    float: left;
  }
}

.tagCloud {
    padding: 10px;


    img {
        border: 0;
    }

    .word a {
        text-decoration: none;
    }

    .word {
        padding: 4px 8px 4px 0;
        white-space: nowrap;
    }

    .valueIsZero {
        text-decoration: line-through;
    }

    span.size0, span.size0 a {
        color: #255792;
        font-size: 28px;
    }

    span.size1, span.size1 a {
        color: #255792;
        font-size: 24px;
    }

    span.size2, span.size2 a {
        color: #255792;
        font-size: 20px;
    }

    span.size3, span.size3 a {
        color: #255792;
        font-size: 16px;
    }

    span.size4, span.size4 a {
        color: #255792;
        font-size: 15px;
    }

    span.size5, span.size5 a {
        color: #255792;
        font-size: 14px;
    }

    span.size6, span.size6 a {
        color: #255792;
        font-size: 11px;
    }
}