diff options
author | Sem <sembrestels@riseup.net> | 2011-12-15 20:57:48 +0100 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2011-12-15 20:57:48 +0100 |
commit | 7e514586d72eb0cc4503fcffa96d6d4a9ab8f956 (patch) | |
tree | e791a7772c619c80402fd71d64b021d435c9a590 /views/default/css/walled_garden.php | |
download | saravea_theme-7e514586d72eb0cc4503fcffa96d6d4a9ab8f956.tar.gz saravea_theme-7e514586d72eb0cc4503fcffa96d6d4a9ab8f956.tar.bz2 |
Added Start and Manifest files, and original CSS views also.
Diffstat (limited to 'views/default/css/walled_garden.php')
-rw-r--r-- | views/default/css/walled_garden.php | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/views/default/css/walled_garden.php b/views/default/css/walled_garden.php new file mode 100644 index 0000000..ea25435 --- /dev/null +++ b/views/default/css/walled_garden.php @@ -0,0 +1,74 @@ +<?php +/** + * Walled garden CSS + */ + +$url = elgg_get_site_url(); + +?> +.elgg-body-walledgarden { + margin: 100px auto 0 auto; + position: relative; + width: 530px; +} +.elgg-module-walledgarden { + position: absolute; + top: 0; + left: 0; +} +.elgg-module-walledgarden > .elgg-head { + height: 17px; +} +.elgg-module-walledgarden > .elgg-body { + padding: 0 10px; +} +.elgg-module-walledgarden > .elgg-foot { + height: 17px; +} +.elgg-walledgarden-double > .elgg-head { + background: url(<?php echo $url; ?>_graphics/walled_garden/two_column_top.png) no-repeat left top; +} +.elgg-walledgarden-double > .elgg-body { + background: url(<?php echo $url; ?>_graphics/walled_garden/two_column_middle.png) repeat-y left top; +} +.elgg-walledgarden-double > .elgg-foot { + background: url(<?php echo $url; ?>_graphics/walled_garden/two_column_bottom.png) no-repeat left top; +} +.elgg-walledgarden-single > .elgg-head { + background: url(<?php echo $url; ?>_graphics/walled_garden/one_column_top.png) no-repeat left top; +} +.elgg-walledgarden-single > .elgg-body { + background: url(<?php echo $url; ?>_graphics/walled_garden/one_column_middle.png) repeat-y left top; +} +.elgg-walledgarden-single > .elgg-foot { + background: url(<?php echo $url; ?>_graphics/walled_garden/one_column_bottom.png) no-repeat left top; +} + +.elgg-col > .elgg-inner { + margin: 0 0 0 5px; +} +.elgg-col:first-child > .elgg-inner { + margin: 0 5px 0 0; +} +.elgg-col > .elgg-inner { + padding: 0 8px; +} + +.elgg-walledgarden-single > .elgg-body > .elgg-inner { + padding: 0 8px; +} + +.elgg-module-walledgarden-login { + margin: 0; +} +.elgg-body-walledgarden h3 { + font-size: 1.5em; + line-height: 1.1em; + padding-bottom: 5px; +} + +.elgg-heading-walledgarden { + color: #666666; + margin-top: 60px; + line-height: 1.1em; +} |