Suyeon Jung

Modify result css

1 body { 1 body {
2 text-align: center; 2 text-align: center;
3 } 3 }
4 -.table{ 4 +
5 +.table {
5 text-align: center; 6 text-align: center;
6 - margin-left: 25%; 7 + margin-left: auto;
7 - width: 50%; 8 + margin-right: auto;
9 + width: 75%;
8 } 10 }
9 -.container{ 11 +
12 +.container {
10 text-align: center; 13 text-align: center;
11 } 14 }
12 15
13 -.sum{ 16 +.sum {
14 display: inline-block; 17 display: inline-block;
15 font-weight: bold; 18 font-weight: bold;
16 margin-right: 10px; 19 margin-right: 10px;
20 +}
21 +
22 +.alert {
23 + text-align: center;
24 + width: 75%;
25 + display: inline-block;
26 + margin-left: auto;
27 + margin-right: auto;
28 +}
29 +
30 +.divide {
31 + border: dotted 1px gray;
32 + width: 75%;
17 } 33 }
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
29 </tbody> 29 </tbody>
30 </table> 30 </table>
31 31
32 -<hr style = "border:dotted 1px gray; width : 50%;"> 32 +<hr class="divide">
33 33
34 34
35 <h4>🍔 패스트푸드점 현황 </h4> 35 <h4>🍔 패스트푸드점 현황 </h4>
...@@ -54,9 +54,9 @@ ...@@ -54,9 +54,9 @@
54 <%}%> 54 <%}%>
55 </tbody> 55 </tbody>
56 </table> 56 </table>
57 -<p class = "sum">총 맛집 개수 : 57 +<p class="sum">총 맛집 개수 :
58 <%=stores.length%> 58 <%=stores.length%>
59 </p> 59 </p>
60 -<p class = "sum">패스트푸드점 개수 : 60 +<p class="sum">패스트푸드점 개수 :
61 <%=fast_food_stores.length%> 61 <%=fast_food_stores.length%>
62 </p> 62 </p>
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -21,10 +21,9 @@ ...@@ -21,10 +21,9 @@
21 </tbody> 21 </tbody>
22 </table> 22 </table>
23 23
24 -<hr style = "border:dotted 1px gray; width : 50%;"> 24 +<hr style="border:dotted 1px gray; width : 50%;">
25 25
26 <h4>💡 보안등 현황</h4> 26 <h4>💡 보안등 현황</h4>
27 -보안등 소재지 지번주소 :
28 <table class="table"> 27 <table class="table">
29 <thead class="thead-dark"> 28 <thead class="thead-dark">
30 <tr> 29 <tr>
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
31 </tbody> 31 </tbody>
32 </table> 32 </table>
33 33
34 -<hr style = "border:dotted 1px gray; width : 50%;"> 34 +<hr class="divide">
35 35
36 36
37 37
...@@ -63,10 +63,10 @@ ...@@ -63,10 +63,10 @@
63 </tbody> 63 </tbody>
64 </table> 64 </table>
65 65
66 -<p class = "sum">총 도서관 개수 : 66 +<p class="sum">총 도서관 개수 :
67 <%=librarys.length%> 67 <%=librarys.length%>
68 </p> 68 </p>
69 69
70 -<p class = "sum">학원 및 교습소 개수 : 70 +<p class="sum">학원 및 교습소 개수 :
71 <%=institutes.length%> 71 <%=institutes.length%>
72 </p> 72 </p>
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
23 23
24 24
25 25
26 -<hr style = "border:dotted 1px gray; width : 50%;"> 26 +<hr class="divide">
27 27
28 <h4>🚆 지하철역 현황</h4> 28 <h4>🚆 지하철역 현황</h4>
29 29
...@@ -54,6 +54,6 @@ ...@@ -54,6 +54,6 @@
54 <p class="sum">총 버스정류장 개수 : 54 <p class="sum">총 버스정류장 개수 :
55 <%=busStations.length%> 55 <%=busStations.length%>
56 </p> 56 </p>
57 -<p class = "sum">총 지하철역 개수 : 57 +<p class="sum">총 지하철역 개수 :
58 <%=subwayStations.length%> 58 <%=subwayStations.length%>
59 </p> 59 </p>
...\ No newline at end of file ...\ No newline at end of file
......