summaryrefslogtreecommitdiff
path: root/ui/app/components/wizard/wizard.less
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/wizard/wizard.less')
-rw-r--r--ui/app/components/wizard/wizard.less44
1 files changed, 44 insertions, 0 deletions
diff --git a/ui/app/components/wizard/wizard.less b/ui/app/components/wizard/wizard.less
new file mode 100644
index 0000000..29efc20
--- /dev/null
+++ b/ui/app/components/wizard/wizard.less
@@ -0,0 +1,44 @@
+.wizard .stage {
+ position: absolute;
+ height: 100%;
+ width: 100%;
+
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-direction: column;
+ flex-direction: column;
+ -webkit-flex: 1;
+ flex: 1;
+}
+
+.wizard .stage .footer {
+ -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
+ background-color: #ddd;
+ padding: 20px;
+ text-align: right;
+}
+
+.wizard .stage .header {
+ -webkit-flex: 0 0 auto;
+ 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 {
+ -webkit-flex: 1 1 auto;
+ flex: 1 1 auto;
+ padding: 20px;
+ overflow: auto;
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-direction: column;
+ flex-direction: column;
+} \ No newline at end of file