diff --git a/src/js/src/main/app.html b/src/js/src/main/app.html
index fd0022a..a7625a9 100644
--- a/src/js/src/main/app.html
+++ b/src/js/src/main/app.html
@@ -6,16 +6,21 @@
Solitude
+
+
-
+
@@ -26,50 +31,62 @@
-
Hello Solitude World
This is third Solitude
-
-
-
+
+
+
+
+
+
diff --git a/src/js/src/main/css/index.css b/src/js/src/main/css/index.css
index f857027..501b9d6 100644
--- a/src/js/src/main/css/index.css
+++ b/src/js/src/main/css/index.css
@@ -2,6 +2,23 @@
color: #CCCCCC;
background-color: #28385E;
font-size: 16px;
+ margin: 0em;
+}
+
+#header {
+ color:#CCCCCC;
+ font-size: 1.25em;
+ background-color: #516C8D;
+ margin-bottom: 0.25em;
+ margin-left: 0.5em;
+ height: 2em;
+ vertical-align: middle;
+}
+
+#header > p {
+ margin-top: 0em;
+ margin-bottom: 0em;
+ padding-left: 0.5em;
}
#main {
@@ -154,6 +171,7 @@
background-color: #CCCCCC;
}
+#main-pane div.type-iframe iframe,
#main-pane #petari {
width:100%;
height:100%;
diff --git a/src/js/src/main/web-conf.js b/src/js/src/main/web-conf.js
new file mode 100644
index 0000000..0381c8a
--- /dev/null
+++ b/src/js/src/main/web-conf.js
@@ -0,0 +1,17 @@
+(function webconfig(global) {
+ global.tmp = global.tmp || {};
+ global.tmp.solitudeapps = {};
+ loadTo(global.tmp.solitudeapps);
+ console.log(window)
+})(window)
+
+
+function loadTo(target) {
+ const apps = target;
+ apps.main = {};
+ apps.main.type = "main";
+
+ apps.mdeditor = {};
+ apps.mdeditor.type = "ifraem";
+ apps.mdeditor.src = "../mdeditor/app.html";
+}
\ No newline at end of file