Browse Source

home option

aaron-1015 3 years ago
parent
commit
f69d214846
2 changed files with 60 additions and 38 deletions
  1. 43 37
      static/index.css
  2. 17 1
      templates/home.html

+ 43 - 37
static/index.css

@@ -1,38 +1,44 @@
 #sitebody{
-    width:1200px;
-    margin:0 auto;
-    font-size:13px;
-}
-
-
-#top-side-bar{
-    /* background-color; */
-    width:600px;
-    height:120px;
-    text-align:center;
-    line-height:100px;
-    float:center;
-}
-
-#logo{
-    float:left;
-
-
-}
-#member{
-    float:right
-}
-
-#nav-side-bar{
-    /* background-color; */
-    /* width:120px; */
-/*     height:120px; */
-/*     text-align:center; */
-    line-height:60px;
-    float:left;
-}
-
-
-#content{
-    float:center;
-}
+    /*     width:1200px; */
+        margin:0 auto;
+        font-size:13px;
+    /*     border-style:solid; */
+    }
+    
+    
+    #top-side-bar{
+        /* background-color; */
+    /*     width:600px; */
+        height:120px;
+        text-align:center;
+        line-height:100px;
+        float:center;
+        border-style:solid;
+    }
+    
+    #logo{
+        float:left;
+    /*     border-style:solid; */
+    
+    }
+    #member{
+        float:right;
+    /*     border-style:solid; */
+        border: 5px;    
+    }
+    
+    #nav-side-bar{
+        /* background-color; */
+        /* width:120px; */
+    /*     height:120px; */
+    /*     text-align:center; */
+        line-height:60px;
+        float:left;
+        border-style:solid;
+    }
+    
+    
+    #content{
+        float:center;
+    /*     border-style:solid; */
+    }

+ 17 - 1
templates/home.html

@@ -6,5 +6,21 @@
 
 
 {% block body %}
-
+    <div id='select_boxes'>
+        <select>
+            <option value="公司">選擇公司</option>
+            <option value="公司1">公司1</option>
+            <option value="公司2">公司2</option>
+        </select>
+        <select>
+            <option value="廠區">選擇廠區</option>
+            <option value="廠區1">廠區1</option>
+            <option value="廠區2">廠區2</option>
+        </select>
+        <select>
+            <option value="課">選擇課</option>
+            <option value="課1">課1</option>
+            <option value="課2">課2</option>
+        </select>
+    </div>
 {% endblock %}