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

installation.css « stylesheets « Installation « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5621ae98df5bd4ea980cb0579e7252709642b282 (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
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
body {
    font-size: 14px;
}

/* Header */
.header {
    padding: 50px 0 12px;
    margin-bottom: 40px;
    border-bottom: solid 1px #ccc;
}
.logo {
    float: left;
}
.logo img {
    max-height: 30px;
}
.logo p {
    font-size: 12px;
    color: grey;
}
.language-selector {
    float: left;
    margin-left: 15px;
    margin-top: 10px;
}
.installation-progress {
    float: right;
    width: 400px;
}
.installation-progress h4 {
    font-size: 10px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.installation-progress h4 small {
    float: right;
    color: #d4291f;
}
.installation-progress .progress {
    margin-bottom: 0;
}

.installation-finished .form-group .checkbox {
    width: 100%;
}

/* Content */
h2 {
    font-size: 25px;
    font-weight: normal;
    margin-bottom: 15px;
}
h3 {
    font-size: 18px;
    font-weight: normal;
    margin-top: 25px;
    margin-bottom: 15px;
}
.content p {
    color: #858585;
    margin-bottom: 10px;
}
p.next-step {
    margin-top: 20px;
    margin-bottom: 20px;
}
p.next-step:first-child {
    margin-top: 0;
}

/* This rule is duplicated here from systemCheckPage.less */
.system-check td:first-child {
    width: 40%;
}

/* Form classes that we can't change */
.warning {
    padding: 20px;
    border-radius: 2px;
    margin: 10px;
    color: #E0645D;
    border: 1px solid #D4291F;
}
.warning img {
    vertical-align: bottom;
}

.system-check .icon-ok, .system-check-legend .icon-ok {
    color: #1AA282;
    margin-right: 10px;
}
.system-check .icon-warning, .system-check-legend .icon-warning {
    color: #DF9D27;
    margin-right: 10px;
}
.system-check .icon-error, .system-check-legend .icon-error {
    color: #D73F36;
    margin-right: 10px;
}

.system-check-legend {
    font-size: 13px;
}