webui: Fix redfish to use proper styles

Redfish was using inline style tags, which is conflicting with our
desire to disable inline styles.  This moves the redfish styles to an
appropriate SCSS file.

Tested by:
Launched redfish GUI, and observed no style differences

Change-Id: Ifb96730f0d6a34700f8c05666b6963a77d511911
Signed-off-by: Ed Tanous <ed.tanous@intel.com>
diff --git a/app/redfish/styles/index.scss b/app/redfish/styles/index.scss
new file mode 100644
index 0000000..0bfb29c
--- /dev/null
+++ b/app/redfish/styles/index.scss
@@ -0,0 +1,14 @@
+.redfish {
+  .logo {
+    max-width: 400px;
+    margin: 0;
+  }
+
+  .key_value {
+    list-style: none;
+  }
+
+  .value {
+    margin-left: 2em;
+  }
+}