Andrew Chalkley 9 yıl önce
ebeveyn
işleme
7c81573bd1
2 değiştirilmiş dosya ile 14 ekleme ve 11 silme
  1. 2 0
      front-end/css/style.css
  2. 12 11
      front-end/index.html

+ 2 - 0
front-end/css/style.css

@@ -9,6 +9,7 @@ body {
     background: #00B7FF;
     width: 0%;
     height: 10px;
+    float:left;
 }
 
 button {
@@ -20,6 +21,7 @@ button {
   padding: 10px 20px 10px 20px;
   text-decoration: none;
   border:0;
+    float: left;
 }
 
 button:hover {

+ 12 - 11
front-end/index.html

@@ -7,22 +7,23 @@
 </head>
 <body>
     <label for="ports">Select Port:</label>
-    <select title="Select a Serial/COM Port" id="ports" name="ports" class="form-control" disabled>
+    <select title="Select a Serial/COM Port" id="ports" name="ports" disabled>
+
+    </select>
+
+    <label for="manifests">Select Binaries to Flash:</label>
+    <select title="Select Binaries to Flash" id="manifests" name="manifests" disabled>
+
     </select>
 
-            <label for="manifests">Select Binaries to Flash:</label>
-            <select title="Select Binaries to Flash" id="manifests" name="manifests" class="form-control" disabled>
-            
-            </select>
 
-    
-    <button id="flash-button" class="btn btn-primary pull-right" disabled>
-                Flash!
+    <button id="flash-button" disabled>
+        Flash!
     </button>
+
     <div id="progress"></div>
-    <footer>
-        <span id="status"></span>
-    </footer>
+
+    <footer><span id="status"></span></footer>
 
 <!-- Javascript -->
 <script src="js/app.js" charset="utf-8"></script>