Minor changes for code publication and persistant method to VC
diff --git a/dev/scss/header/searchbar.scss b/dev/scss/header/searchbar.scss
index 6411d87..e0f241e 100644
--- a/dev/scss/header/searchbar.scss
+++ b/dev/scss/header/searchbar.scss
@@ -2,6 +2,8 @@
 @import "../util";
 
 $border-size: 2px;
+$right-padding: 60px;
+
 
 /**
  * Input field
@@ -23,7 +25,7 @@
 #searchbar {
   position: relative;
   width: 100%;
-  padding-right: 60px;
+  padding-right: $right-padding;
   button[type=submit] {
     position: absolute;
     font-weight: normal;
@@ -72,6 +74,21 @@
   }
 }
 
+#koralquery {
+  margin-top: 10px;
+  margin-right: 40px;
+  border: {
+    radius: $standard-border-radius;
+    color: $dark-green;
+    style: solid;
+    width: $border-size;
+  }
+  white-space: pre;
+  background-color: $nearly-white;
+  color: $dark-grey;
+}
+
+
 /**
  * Checkbox styling
  * http://stackoverflow.com/questions/4148499/how-to-style-checkbox-using-css
@@ -106,4 +123,4 @@
       content: $fa-checked;
     }
   }
-}
\ No newline at end of file
+}