diff --git a/editor/css/editor.css b/editor/css/editor.css
index e1d16dc369610f1dde886852ca0b1c09699d268d..61852b227bff466abcd59bebe3470981e9a7362e 100644
--- a/editor/css/editor.css
+++ b/editor/css/editor.css
@@ -44,6 +44,7 @@ div#ks-editor .bottom-space {
 
 div#ks-editor textarea {
     max-width: 100%;
+    resize: both;
     letter-spacing: normal;
 }
 
diff --git a/editor/editor.php b/editor/editor.php
index b70f0f44f4a57e6b5bcba32ba6a2fa37e88b1a53..a1975e629bdab34fdb94864d20f6fb9a1f7ffe77 100644
--- a/editor/editor.php
+++ b/editor/editor.php
@@ -13,21 +13,31 @@
             <p id="nothing-selected">Nothing selected</p>
             <div id="node-selected" class="hidden">
                 <label for="node-name" hidden>Name</label>
+                </br>
                 <input type="text" id="node-name" name="node-name" placeholder="Enter name" class="bottom-space"></input>
 
+                </br>
+
                 <label for="node-description">Description</label>
+                </br>
                 <textarea id="node-description" name="node-description" class="bottom-space"></textarea>
 
+                </br>
                 <label for="node-image">Node Image</label>
+                </br>
                 <img id="node-image-preview" class="preview-image" src="" />
-                <input type="text" id="node-image" name="node-image" placeholder="Enter file name or URL" class="medium-width bottom-space" />
+                <input type="text" id="node-image" name="node-image" placeholder="Enter file name or URL" class="bottom-space" />
 
+                </br>
                 <label for="node-detail-image">Info Image</label>
+                </br>
                 <img id="node-detail-image-preview" class="preview-image" src="" />
-                <input type="text" id="node-detail-image" name="node-detail-image" placeholder="Enter file name or URL" class="medium-width bottom-space" />
+                <input type="text" id="node-detail-image" name="node-detail-image" placeholder="Enter file name or URL" class="bottom-space" />
 
+                </br>
                 <label for="node-type">Type</label>
-                <select id="node-type" name="node-type" class="bottom-space medium-width">
+                </br>
+                <select id="node-type" name="node-type" class="bottom-space">
                     <option value="Vorlesung">Vorlesung</option>
                     <option value="Algorithmus">Algorithmus</option>
                     <option value="Definition">Definition</option>
@@ -36,10 +46,14 @@
                     <option value="Kapitel">Kapitel</option>
                 </select>
 
+                </br>
                 <label for="node-video">Video</label>
+                </br>
                 <input type="text" placeholder="Video URL" id="node-video" name="node-video"></input>
 
+                </br>
                 <label for="node-references">References</label> <small>One URL per line</small>
+                </br>
                 <textarea id="node-references" name="node-references" class="bottom-space"></textarea>
             </div>
             <div id="link-selected" class="hidden">
@@ -52,7 +66,7 @@
             </input>
 
             </br>
-            
+
             <label>Simulate physics from beginning</label>
             </br>
             <button id="reanimate-button" name="reanimate-button" class="bottom-space">Re-simulate</button>
@@ -60,6 +74,7 @@
             </br>
 
             <label for="stop-physics-delay">Amount of time [in seconds] after which the physics simulation is stopped</label>
+            </br>
             <input type="number" value="5" id="stop-physics-delay" name="stop-physics-delay" class="small-width">
             </input>
         </div>