aboutsummaryrefslogtreecommitdiff
path: root/mod/basic_theme/views/default/css/walled_garden.php
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-03-15 14:48:17 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-03-15 14:48:17 -0300
commitecf3fa9e33033f2921e266c781e0ba32eecfa977 (patch)
tree8aa7874dc4b84ed890bfb7b0024145c82ad331a2 /mod/basic_theme/views/default/css/walled_garden.php
parent0b487846ecd43b99933255280565aaec32f98faa (diff)
parent238eb4e25087be44e834614a01ccbdec250cea45 (diff)
downloadelgg-ecf3fa9e33033f2921e266c781e0ba32eecfa977.tar.gz
elgg-ecf3fa9e33033f2921e266c781e0ba32eecfa977.tar.bz2
Merge commit '238eb4e25087be44e834614a01ccbdec250cea45' as 'mod/basic_theme'
Diffstat (limited to 'mod/basic_theme/views/default/css/walled_garden.php')
-rw-r--r--mod/basic_theme/views/default/css/walled_garden.php81
1 files changed, 81 insertions, 0 deletions
diff --git a/mod/basic_theme/views/default/css/walled_garden.php b/mod/basic_theme/views/default/css/walled_garden.php
new file mode 100644
index 000000000..f6f7f97dc
--- /dev/null
+++ b/mod/basic_theme/views/default/css/walled_garden.php
@@ -0,0 +1,81 @@
+<?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 {
+ padding: 0 18px;
+}
+
+.elgg-module-walledgarden-login {
+ margin: 0;
+}
+.elgg-body-walledgarden h3 {
+ font-size: 1.5em;
+ line-height: 1.1em;
+ padding-bottom: 5px;
+}
+
+.elgg-heading-walledgarden {
+ margin-top: 60px;
+ line-height: 1.1em;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #666;
+}
+
+a {
+ color: #999;
+} \ No newline at end of file