aboutsummaryrefslogtreecommitdiffstats
path: root/view/css
diff options
context:
space:
mode:
authorivan zlax <zlaxyi@gmail.com>2023-05-25 08:53:03 +0000
committerMario <mario@mariovavti.com>2023-05-25 08:53:03 +0000
commite6eb2a847637fe4cc2f9d3e0f5c137f9b56b419d (patch)
tree313957115e99b8b10a5b424e63956f44e2a046f3 /view/css
parentb8c9f0498961bb3237c94ad007172883f554e2b2 (diff)
downloadvolse-hubzilla-e6eb2a847637fe4cc2f9d3e0f5c137f9b56b419d.tar.gz
volse-hubzilla-e6eb2a847637fe4cc2f9d3e0f5c137f9b56b419d.tar.bz2
volse-hubzilla-e6eb2a847637fe4cc2f9d3e0f5c137f9b56b419d.zip
double columns templates
Diffstat (limited to 'view/css')
-rw-r--r--view/css/doubleleft.css31
-rw-r--r--view/css/doubleright.css31
2 files changed, 62 insertions, 0 deletions
diff --git a/view/css/doubleleft.css b/view/css/doubleleft.css
new file mode 100644
index 000000000..f26b66824
--- /dev/null
+++ b/view/css/doubleleft.css
@@ -0,0 +1,31 @@
+main {
+ position: relative;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+}
+
+.content {
+ display: flex;
+ flex: 1;
+}
+
+.columns {
+ display: flex;
+ flex:1;
+ min-width: 0;
+}
+
+#region_1 {
+ position: relative;
+ order: 1;
+ padding: 4.5rem 7px 0px 7px;
+}
+
+#region_2 {
+ position: relative;
+ flex: 1;
+ order: 2;
+ padding: 4.5rem 7px 200px 7px;
+ min-width: 0;
+}
diff --git a/view/css/doubleright.css b/view/css/doubleright.css
new file mode 100644
index 000000000..29a09c007
--- /dev/null
+++ b/view/css/doubleright.css
@@ -0,0 +1,31 @@
+main {
+ position: relative;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+}
+
+.content {
+ display: flex;
+ flex: 1;
+}
+
+.columns {
+ display: flex;
+ flex:1;
+ min-width: 0;
+}
+
+#region_1 {
+ position: relative;
+ flex: 1;
+ order: 1;
+ padding: 4.5rem 7px 200px 7px;
+ min-width: 0;
+}
+
+#region_2 {
+ position: relative;
+ order: 2;
+ padding: 4.5rem 7px 0px 7px;
+}