summaryrefslogtreecommitdiff
path: root/src/leap/bitmask_js/app/components/wizard/wizard.less
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2016-08-26 21:09:53 -0700
committerelijah <elijah@riseup.net>2016-09-05 17:39:22 -0700
commit89e9d840565c18463b2643920032b21ba232796b (patch)
tree4ec21e3d7be707fecb5ed458f2ca03a4dffc1fea /src/leap/bitmask_js/app/components/wizard/wizard.less
parentb9a292bf6d26fe432d0750ce3d5065312dfaedc4 (diff)
[feat] added initial bitmask_js (WIP)
Diffstat (limited to 'src/leap/bitmask_js/app/components/wizard/wizard.less')
-rw-r--r--src/leap/bitmask_js/app/components/wizard/wizard.less36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/leap/bitmask_js/app/components/wizard/wizard.less b/src/leap/bitmask_js/app/components/wizard/wizard.less
new file mode 100644
index 00000000..3336ffb8
--- /dev/null
+++ b/src/leap/bitmask_js/app/components/wizard/wizard.less
@@ -0,0 +1,36 @@
+.wizard .stage {
+ position: absolute;
+ height: 100%;
+ width: 100%;
+
+ display: flex;
+ flex-direction: column;
+ flex: 1;
+}
+
+.wizard .stage .footer {
+ flex: 0 0 auto;
+ background-color: #ddd;
+ padding: 20px;
+ text-align: right;
+}
+
+.wizard .stage .header {
+ flex: 0 0 auto;
+ padding: 20px;
+ background-color: #333;
+ color: white;
+ font-size: 2em;
+ span {
+ margin-left: 10px;
+ font-size: 0.5em;
+ }
+}
+
+.wizard .stage .body {
+ flex: 1 1 auto;
+ padding: 20px;
+ overflow: auto;
+ display: flex;
+ flex-direction: column;
+} \ No newline at end of file