blob: 82d742eafe8726dda6af1e307967ddcafe3dd8f7 (
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
|
<?php
/**
* Elgg CSS
* The standard CSS file
*
* @package Elgg
* @subpackage Core
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd
* @copyright Curverider Ltd 2008
* @link http://elgg.org/
*
* @uses $vars['wwwroot'] The site URL
*/
?>
/*
Default Elgg CSS
*/
body {
background:#fff;
color:#000;
margin:20px center;
text-align:center;
}
#container {
width:990px;
border-left:2px solid #555;
border-right:2px solid #555;
margin:auto;
}
#header {
margin:0 0 20px 0;
padding:10px;
text-align:left;
position:relative;
border-bottom:1px solid #555;
}
#topmenu {
position:absolute;
top:2px;
right:10px;
}
#topmenu li {
display:inline;
list-style:none;
}
#sidebar_toolbox {
float:left;
width:150px;
background:#efefef;
padding:5px;
text-align:left;
text-size:10px;
margin:0;
}
#mainContent_nosidebar {
margin:0 0 0 180px;
width:750px;
padding:20px;
}
#login-box {
text-align:left;
background:#555;
border:1px solid #ddd;
width:300px;
padding:10px;
color:#fff;
}
#footer {
border-top:1px solid #555;
margin:20px 0 0 0;
padding:10px;
}
.messages {
border:1px solid #D3322A;
background:#F7DAD8;
color:#000;
padding:3px 50px;
margin:20px 20px 10px 20px;
}
|