Elgg  Version master
maintenance.css.php
Go to the documentation of this file.
1 <?php
6 echo elgg_view('elements/reset.css', $vars);
7 echo elgg_view('elements/helpers.css', $vars);
8 echo elgg_view('elements/z-index.css', $vars);
9 echo elgg_view('elements/components/messages.css', $vars);
10 
11 ?>
12 /* <style> /**/
13 
14 body {
15  font-size: 90%;
16  line-height: 1.4em;
17  font-family: "Helvetica Neue", Helvetica, "Lucida Grande", Arial, sans-serif;
18 }
19 h1, h2, h3, h4, h5, h6 {
20  color: #2d3047;
21  font-weight: bold;
22 }
23 h1 {
24  font-size: 1.8em;
25  margin-bottom: 1em;
26 }
27 h3 {
28  font-size: 1.5em;
29  line-height: 1.1em;
30  margin-bottom: 5px;
31 }
32 a {
33  color: #999;
34 }
35 
36 /* ***************************************
37  LAYOUT
38 *************************************** */
39 
40 .elgg-page-maintenance {
41  margin: 0;
42  position: relative;
43  display: flex;
44  justify-content: center;
45  align-items: center;
46  min-height: 100vh;
47 
48  .elgg-body-maintenance {
49  min-width: 30rem;
50  max-width: 50%;
51  min-height: 100%;
52 
53  background: #fff;
54  border: 1px solid #DEDEDE;
55  padding: 2rem;
56 
57  border-radius: 4px;
58  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.25);
59  }
60 }
61 
62 .elgg-system-messages {
63  position: fixed;
64  top: 32px;
65  right: 20px;
66  max-width: 500px;
67 }
68 
69 .elgg-module {
70  > .elgg-head {
71  padding: 1rem 0;
72  }
73 }
74 
75 .elgg-output {
76  font-size: 14px;
77  margin-top: 20px;
78  padding: 20px;
79  color: #B94A48;
80  background-color: #F8E8E8;
81  border: 1px solid #E5B7B5;
82  border-radius: 5px;
83  margin-bottom: 42px;
84 }
85 
86 .elgg-form-login {
87  max-width: 470px;
88 }
89 
90 /* ***************************************
91  USER INPUT DISPLAY RESET
92 *************************************** */
93 
94 .elgg-output {
95  margin-top: 10px;
96 
97  dt {
98  font-weight: bold;
99  }
100 
101  dd {
102  margin: 0 0 1em 1em;
103  }
104 
105  ul {
106  list-style-type: disc;
107  margin: 0 1.5em 1.5em 0;
108  padding-left: 1.5em;
109  }
110 
111  ol {
112  list-style-type: decimal;
113  list-style-position: inside;
114  margin: 0 1.5em 1.5em 0;
115  padding-left: .4em;
116  }
117 
118  table {
119  border: 1px solid #DCDCDC;
120 
121  td {
122  border: 1px solid #DCDCDC;
123  padding: 3px 5px;
124  }
125  }
126 
127  img {
128  max-width: 100%;
129  height: auto;
130  }
131 }
132 
133 /* ***************************************
134  Form Elements
135 *************************************** */
136 
137 .elgg-form-body,
138 .elgg-field {
139  margin-bottom: 15px;
140 
141  &:last-child {
142  margin-bottom: 0;
143  }
144 }
145 
146 label {
147  font-weight: bold;
148  color: #333;
149  font-size: 90%;
150 }
151 input, textarea {
152  border: 1px solid #DCDCDC;
153  color: #666;
154  font: 100% Arial, Helvetica, sans-serif;
155  padding: 7px 6px;
156  width: 100%;
157  border-radius: 3px;
158  box-sizing: border-box;
159 }
160 
161 input[type=email]:focus,
162 input[type=password]:focus,
163 input[type=text]:focus,
164 input[type=number]:focus,
165 input[type=url]:focus,
166 textarea:focus {
167  border: solid 1px #C2C2C2;
168  background: #e6e6ea;
169  /* We remove outlines from specific input types so we can leave the browser
170  defaults (like glows) for everything else */
171  outline: 0 none;
172 }
173 input[type="checkbox"],
174 input[type="radio"] {
175  margin: 0 3px 0 0;
176  padding: 0;
177  border: none;
178  width: auto;
179 }
180 input[type="number"] {
181  -moz-appearance: textfield;
182 }
183 .elgg-input-checkboxes.elgg-horizontal li,
184 .elgg-input-radios.elgg-horizontal li {
185  display: inline;
186  padding-right: 10px;
187 }
188 
189 /* **************************
190  BUTTONS
191 ************************** */
192 .elgg-button {
193  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
194  color: #FFF;
195  width: auto;
196  padding: 5px 12px;
197  cursor: pointer;
198 
199  border-radius: 3px;
200  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.6);
201 }
202 .elgg-button-submit {
203  background-color: #666;
204  border-color: #555;
205  color: white;
206  text-shadow: none;
207  text-decoration: none;
208 }
209 .elgg-button-submit:hover {
210  background-color: #333;
211  border-color: #222;
212 }
elgg_view(string $view, array $vars=[], string $viewtype= '')
Return a parsed view.
Definition: views.php:156
$site email
Definition: settings.php:16
$vars
Definition: theme.php:5
$data label
Definition: default.php:22
this section has the sole purpose of protecting the integrity of the free software distribution system
Definition: LICENSE.txt:271