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

simple_structure.css « stylesheets « Morpheus « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb5fccd13fc044b02d192330bf1279de39ee5a32 (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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/* Most of the code here can be removed once we switch to Bootstrap */
body {
	font-family: Verdana, sans-serif;
}
body#simple  {
    background: #fff;
}
#simple .logo {
    color: #888;
    text-align: center;
    font-size: 12px;
    margin-top: 30px;
}
#simple .logo a {
	color: #888;
	text-decoration: none;
}
#simple .box {
    border-radius: 2px;	
    border: solid 1px #ccc;
    max-width: 780px;
    margin: 30px auto 60px auto;
    overflow: hidden;
    box-shadow: 0 1px 6px 0 #ccc;
}

#simple .box .header {
    background-color: #f0f0f0;
	padding: 40px 80px;
    text-align: center;
}
#simple .box .header h1 {
	font-size: 30px;
	font-weight: normal;
	margin: 0;
}
#simple .box .header p {
	font-size: 13px;
	margin-top: 10px;
	padding: 0;
}

#simple .box .content {
	margin: 1em 2em;
	text-align: center;
	padding: 30px 50px;
	font-size: 14px;
}
#simple .box .content.text-left {
	text-align: left;
}
#simple .box .content ul {
	text-align: left;
	list-style: disc;
	width: 60%;
	margin: 0 auto;
}
#simple .box .content.text-left ul {
	width: 100%;
}
#simple .box .content form {
    margin: 10px 0;
    min-height: 0;
}
#simple .box .content .btn {
	float: none;
	margin: 0;
}
#simple .box .content h2 {
	font-weight: normal;
	font-size: 19px;
	margin-bottom: 25px;
	margin-top: 30px;
}
#simple .box .content h2:first-child {
	margin-top: 0;
}

#simple .box .footer {
    background-color: #f0f0f0;
    padding: 15px;
    text-align: center;
}
#simple .box .footer a {
    text-decoration: none;
}

/* Old style below */

#contentsimple {
	background: #fff;
	color: #000;
	font-family: Arial, Georgia, "Times New Roman", Times, serif;
	padding: 1em 2em;
	width:780px;
	margin: 30px auto auto;
    border-radius: 12px;
    display: table; /* Contains floating children */
}
#h1 {
	color: #006;
	font-size: 45px;
	font-weight: lighter;
}
#subh1 {
	color: #444444;
    font-size: 17pt;
    margin-left: 15px;
    vertical-align: bottom;
}

#subh1 a {
	color: #444;
    text-decoration:none;
}

#title img{
	vertical-align:bottom;
}
#title {
	padding-bottom:15px;
	border-bottom:1px solid #F0F0F0;
	font:42px Georgia, serif;
}
p, dt {
	line-height: 1.5;
	padding-bottom: 1em;
}
#logo { margin-bottom: 2em; }
.submit {
	font-size:18pt;
	padding: 5px 7px 7px;
	border: 1px solid #a3a3a3;
	border-radius: 3px;
	color: #246;
	background: #e5e5e5;
	text-decoration: none;
}
.submit:hover {
	color: #d54e21;
	border-color: #535353;
}
.success {
	padding-bottom:15px;
	color:#1F7F4A;
	font-size:25pt;
}
.warning {
	font-size:130%;
	font-weight:bold;
	border: 1px solid #ff5502;
}
.warning, .warning a {
	color:#ff5502;
}
.error {
	font-weight:bold;
	font-size:130%;
	border: 1px solid red;
	padding:20px;
}
.error, .error a {
	color:#f00;
}
.error img, .success img, .warning img {
	border:0;
	vertical-align:bottom;
}
.warning, .error {
    border-radius:4px;
	padding:15px;
}
.warning.normalFontSize {
	font-size: 100%;
	padding: 10px;
}
.indented-radio-button {
  margin-left:20px;
}