Elgg  Version 2.3
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/core.css', $vars);
8 echo elgg_view('elements/helpers.css', $vars);
9 
10 ?>
11 /* <style> /**/
12 
13 body {
14  font-size: 80%;
15  font-family: "Lucida Grande", Arial, Tahoma, Verdana, sans-serif;
16  line-height: 1.4em;
17 }
18 h1, h2, h3, h4, h5, h6 {
19  color: #666;
20  font-weight: bold;
21 }
22 h1 {
23  font-size: 2em;
24  margin-bottom: 1em;
25 }
26 h3 {
27  font-size: 1.3em;
28  margin-bottom: 0.4em;
29 }
30 a {
31  color: #999;
32 }
33 p {
34  margin-bottom: 15px;
35 }
36 p:last-child {
37  margin-bottom: 0;
38 }
39 
40 
41 /* ***************************************
42  LAYOUT
43 *************************************** */
44 .elgg-body-maintenance {
45  margin: 100px auto 0 auto;
46  position: relative;
47  width: 530px;
48 }
49 .elgg-module-maintenance {
50  position: absolute;
51  top: 0;
52  left: 0;
53 }
54 .elgg-module-maintenance > .elgg-head {
55  height: 17px;
56 }
57 .elgg-module-maintenance > .elgg-body {
58  padding: 10px 20px;
59 }
60 .elgg-module-maintenance > .elgg-foot {
61  height: 17px;
62 }
63 .elgg-module-maintenance > .elgg-head {
64  background: url(<?= elgg_get_simplecache_url("walled_garden/one_column_top.png"); ?>) no-repeat left top;
65 }
66 .elgg-module-maintenance > .elgg-body {
67  background: url(<?= elgg_get_simplecache_url("walled_garden/one_column_middle.png"); ?>) repeat-y left top;
68 }
69 .elgg-module-maintenance > .elgg-foot {
70  background: url(<?= elgg_get_simplecache_url("walled_garden/one_column_bottom.png"); ?>) no-repeat left top;
71 }
72 .elgg-system-messages {
73  position: fixed;
74  top: 24px;
75  right: 20px;
76  z-index: 2000;
77 }
78 .elgg-system-messages li {
79  margin-top: 10px;
80 }
81 .elgg-system-messages li p {
82  margin: 0;
83 }
84 .elgg-output {
85  margin-bottom: 3em;
86 }
87 .elgg-module-maintenance-login {
88  font-size: 12px;
89  line-height: 1.4em;
90  width: 200px;
91  float: right;
92  margin: 0;
93  border: 1px solid #ccc;
94  padding: 5px;
95  border-radius: 5px;
96 }
97 
98 /* ***************************************
99  USER INPUT DISPLAY RESET
100 *************************************** */
101 
102 .elgg-output {
103  margin-top: 10px;
104 }
105 .elgg-output dt { font-weight: bold }
106 .elgg-output dd { margin: 0 0 1em 1em }
107 
108 .elgg-output ul, .elgg-output ol {
109  margin: 0 1.5em 1.5em 0;
110  padding-left: 1.5em;
111 }
112 .elgg-output ul {
113  list-style-type: disc;
114 }
115 .elgg-output ol {
116  list-style-type: decimal;
117  list-style-position: inside;
118  padding-left: .4em;
119 }
120 .elgg-output table {
121  border: 1px solid #ccc;
122 }
123 .elgg-output table td {
124  border: 1px solid #ccc;
125  padding: 3px 5px;
126 }
127 .elgg-output img {
128  max-width: 100%;
129  height: auto;
130 }
131 
132 /* ***************************************
133  Form Elements
134 *************************************** */
135 fieldset > div {
136  margin-bottom: 5px;
137 }
138 fieldset > div:last-child {
139  margin-bottom: 0;
140 }
141 label {
142  font-weight: bold;
143  color: #333;
144  font-size: 110%;
145 }
146 input, textarea {
147  border: 1px solid #ccc;
148  color: #666;
149  font: 120% Arial, Helvetica, sans-serif;
150  padding: 5px;
151  width: 100%;
152  border-radius: 5px;
153  -webkit-box-sizing: border-box;
154  -moz-box-sizing: border-box;
155  box-sizing: border-box;
156 }
157 
158 input[type=email]:focus,
159 input[type=password]:focus,
160 input[type=text]:focus,
161 input[type=number]:focus,
162 input[type=url]:focus,
163 textarea:focus {
164  border: solid 1px #aaa;
165  background: #eee;
166  color:#333;
167  /* We remove outlines from specific input types so we can leave the browser
168  defaults (like glows) for everything else */
169  outline: 0 none;
170 }
171 input[type="checkbox"],
172 input[type="radio"] {
173  margin: 0 3px 0 0;
174  padding: 0;
175  border: none;
176  width: auto;
177 }
178 input[type="number"] {
179  -moz-appearance: textfield;
180 }
181 .elgg-input-checkboxes.elgg-horizontal li,
182 .elgg-input-radios.elgg-horizontal li {
183  display: inline;
184  padding-right: 10px;
185 }
186 .elgg-button {
187  font-size: 14px;
188  font-weight: bold;
189  border-radius: 5px;
190  width: auto;
191  padding: 2px 4px;
192  cursor: pointer;
193  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.40);
194 }
195 .elgg-button-submit {
196  background-color: #666;
197  border-color: #555;
198  color: white;
199  text-shadow: 1px 1px 0px black;
200  text-decoration: none;
201 }
202 .elgg-button-submit:hover {
203  background-color: #333;
204  border-color: #222;
205 }
206 
207 /* ***************************************
208  Messages
209 *************************************** */
210 .elgg-message {
211  color: white;
212  display: block;
213  padding: 3px 10px;
214  opacity: 0.9;
215  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
216  border-radius: 8px;
217  font-weight: bold;
218 }
219 .elgg-state-success {
220  background-color: black;
221 }
222 .elgg-state-error {
223  background-color: red;
224 }
225 .elgg-state-notice {
226  background-color: #4690D6;
227 }
h5
Definition: admin.css.php:85
font Arial
Definition: admin.css.php:83
font Tahoma
Definition: admin.css.php:83
z index
Definition: admin.css.php:358
clearfix elgg elgg elgg elgg page elgg page elgg elgg foot
Definition: admin.css.php:127
h6
Definition: admin.css.php:85
webkit box sizing
Definition: admin.css.php:296
font family
Definition: admin.css.php:83
elgg message elgg state error
Definition: admin.css.php:247
elgg admin notices a elgg admin notice
Definition: admin.css.php:269
line height
Definition: admin.css.php:82
border color
Definition: admin.css.php:42
elgg_get_simplecache_url($view, $subview= '')
Get the URL for the cached view.
Definition: cache.php:136
em
Definition: admin.css.php:47
font weight
Definition: admin.css.php:65
a
Definition: admin.css.php:97
clearfix elgg elgg elgg elgg page elgg page elgg head
Definition: admin.css.php:127
h4
Definition: admin.css.php:85
elgg page messages
Definition: admin.css.php:233
$vars['entity']
elgg button submit
Definition: admin.css.php:578
ul
Definition: admin.css.php:44
list style type
Definition: admin.css.php:808
box shadow
Definition: admin.css.php:362
elgg menu user li
Definition: admin.css.php:211
elgg module
Definition: admin.css.php:328
font Verdana
Definition: admin.css.php:83
ui datepicker calendar ui state hover
Definition: admin.css.php:692
ol
Definition: admin.css.php:44
text decoration
Definition: admin.css.php:99
h3
Definition: admin.css.php:85
font size
Definition: admin.css.php:81
img
Definition: admin.css.php:40
label
Definition: admin.css.php:464
border radius
Definition: admin.css.php:244
elgg button
Definition: admin.css.php:559
fieldset div
Definition: admin.css.php:485
margin bottom
Definition: admin.css.php:38
clearfix elgg elgg elgg elgg page elgg page elgg elgg elgg elgg col elgg image block
Definition: admin.css.php:127
table
Definition: admin.css.php:59
elgg echo
Translates a string.
Definition: languages.js:48
margin right
Definition: admin.css.php:181
elgg_view($view, $vars=array(), $ignore1=false, $ignore2=false, $viewtype= '')
Return a parsed view.
Definition: views.php:336
elgg output
td
Definition: admin.css.php:63
p
Definition: admin.css.php:118
list style
Definition: admin.css.php:1234
margin left
Definition: admin.css.php:294
elgg input text
Definition: admin.css.php:505
min width
Definition: admin.css.php:166
elgg message elgg state success
Definition: admin.css.php:252
h1
Definition: admin.css.php:85
list style position
login(\ElggUser $user, $persistent=false)
Logs in a specified .
Definition: sessions.php:320
if(!$site) if(!($site instanceof ElggSite)) $site url
elgg message
Definition: admin.css.php:240
font sans serif
Definition: admin.css.php:83
h2
Definition: admin.css.php:85
elgg input elgg input number
Definition: admin.css.php:505
elgg output dt
elgg table input[type=checkbox]
Definition: admin.css.php:404
body
Definition: admin.css.php:36
$site email
border top
Definition: admin.css.php:390
this section has the sole purpose of protecting the integrity of the free software distribution system