aboutsummaryrefslogtreecommitdiff
path: root/views/default/css.php
blob: a53d120698d4714520975637a965c053e5b4fca2 (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
<?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;
}

#header {
    background:#000;
    color:#fff;
    margin:0 0 20px 0;
    padding:10px;
}

#container {
    width:990px;
    border:1px solid #000;
    margin:auto;
}

#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;
    background:#000;
    padding:20px;
    color:#fff;
}

#login-box {
    text-align:left;
    background:#555;
    border:1px solid #ddd;
    width:300px;
    padding:10px;
    color:#fff;
}

#footer {
    background:#555;
    color:#fff;
    margin:20px 0 0 0;
    padding:10px;
}