Showing
12 changed files
with
71 additions
and
41 deletions
| ... | @@ -6,3 +6,11 @@ | ... | @@ -6,3 +6,11 @@ |
| 6 | .card-body { | 6 | .card-body { |
| 7 | text-align: center; | 7 | text-align: center; |
| 8 | } | 8 | } |
| 9 | + | ||
| 10 | +.alert{ | ||
| 11 | + text-align : center; | ||
| 12 | + width : 50%; | ||
| 13 | + display: inline-block; | ||
| 14 | + margin-left: auto; | ||
| 15 | + margin-right: auto; | ||
| 16 | +} | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
public/css/result.css
0 → 100644
| 1 | +body { | ||
| 2 | + text-align: center; | ||
| 3 | +} | ||
| 4 | +.table{ | ||
| 5 | + text-align: center; | ||
| 6 | + margin-left: 25%; | ||
| 7 | + width: 50%; | ||
| 8 | +} | ||
| 9 | +.container{ | ||
| 10 | + text-align: center; | ||
| 11 | +} | ||
| 12 | + | ||
| 13 | +.sum{ | ||
| 14 | + display: inline-block; | ||
| 15 | + font-weight: bold; | ||
| 16 | + margin-right: 10px; | ||
| 17 | +} | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| ... | @@ -8,14 +8,16 @@ | ... | @@ -8,14 +8,16 @@ |
| 8 | <link rel='stylesheet' href='/vendors/bootstrap/css/bootstrap-grid.min.css' /> | 8 | <link rel='stylesheet' href='/vendors/bootstrap/css/bootstrap-grid.min.css' /> |
| 9 | <link rel='stylesheet' href='/vendors/bootstrap/css/bootstrap-reboot.min.css' /> | 9 | <link rel='stylesheet' href='/vendors/bootstrap/css/bootstrap-reboot.min.css' /> |
| 10 | <link rel='stylesheet' href='/css/category.css'> | 10 | <link rel='stylesheet' href='/css/category.css'> |
| 11 | + <link rel="stylesheet" href="/css/result.css"> | ||
| 11 | 12 | ||
| 12 | <title>📝 결과</title> | 13 | <title>📝 결과</title> |
| 13 | </head> | 14 | </head> |
| 14 | 15 | ||
| 15 | <body> | 16 | <body> |
| 16 | <%- include('components/locationJumbotron') -%> | 17 | <%- include('components/locationJumbotron') -%> |
| 17 | - <%- include(`results/${category}`) -%> | ||
| 18 | <%- include(`components/grade`) -%> | 18 | <%- include(`components/grade`) -%> |
| 19 | + <%- include(`results/${category}`) -%> | ||
| 20 | + | ||
| 19 | 21 | ||
| 20 | </body> | 22 | </body> |
| 21 | 23 | ... | ... |
| 1 | -<h1>🎬 영화관 현황</h1> | 1 | +<h4>🎬 영화관 현황</h4> |
| 2 | <table class="table"> | 2 | <table class="table"> |
| 3 | <thead class="thead-dark"> | 3 | <thead class="thead-dark"> |
| 4 | <th>사업장명</th> | 4 | <th>사업장명</th> |
| ... | @@ -19,6 +19,6 @@ | ... | @@ -19,6 +19,6 @@ |
| 19 | </table> | 19 | </table> |
| 20 | 20 | ||
| 21 | 21 | ||
| 22 | -<h3>총 영화관 개수 : | 22 | +<p class = "sum">총 영화관 개수 : |
| 23 | <%=movies.length%> | 23 | <%=movies.length%> |
| 24 | -</h3> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 24 | +</p> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| 1 | -<h1> | 1 | +<h4> |
| 2 | - 🥘 맛집 현황</h1> | 2 | + 🥘 맛집 현황</h4> |
| 3 | <table class="table"> | 3 | <table class="table"> |
| 4 | <thead class="thead-dark"> | 4 | <thead class="thead-dark"> |
| 5 | <tr> | 5 | <tr> |
| ... | @@ -29,11 +29,10 @@ | ... | @@ -29,11 +29,10 @@ |
| 29 | </tbody> | 29 | </tbody> |
| 30 | </table> | 30 | </table> |
| 31 | 31 | ||
| 32 | -<h3>총 맛집 개수 : | 32 | +<hr style = "border:dotted 1px gray; width : 50%;"> |
| 33 | - <%=stores.length%> | 33 | + |
| 34 | -</h3> | ||
| 35 | 34 | ||
| 36 | -<h1>🍔 패스트푸드점 현황 </h1> | 35 | +<h4>🍔 패스트푸드점 현황 </h4> |
| 37 | 36 | ||
| 38 | <table class="table"> | 37 | <table class="table"> |
| 39 | <thead class="thead-dark"> | 38 | <thead class="thead-dark"> |
| ... | @@ -55,7 +54,9 @@ | ... | @@ -55,7 +54,9 @@ |
| 55 | <%}%> | 54 | <%}%> |
| 56 | </tbody> | 55 | </tbody> |
| 57 | </table> | 56 | </table> |
| 58 | - | 57 | +<p class = "sum">총 맛집 개수 : |
| 59 | -<h3>패스트푸드점 개수 : | 58 | + <%=stores.length%> |
| 59 | +</p> | ||
| 60 | +<p class = "sum">패스트푸드점 개수 : | ||
| 60 | <%=fast_food_stores.length%> | 61 | <%=fast_food_stores.length%> |
| 61 | -</h3> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 62 | +</p> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| 1 | -<h1>🏋️♂️ 운동시설 현황</h1> | 1 | +<h4>🏋️♂️ 운동시설 현황</h4> |
| 2 | 2 | ||
| 3 | <table class="table"> | 3 | <table class="table"> |
| 4 | <thead class="thead-dark"> | 4 | <thead class="thead-dark"> |
| ... | @@ -30,6 +30,6 @@ | ... | @@ -30,6 +30,6 @@ |
| 30 | 30 | ||
| 31 | 31 | ||
| 32 | 32 | ||
| 33 | -<h3>총 운동시설 개수 : | 33 | +<p class = "sum">총 운동시설 개수 : |
| 34 | <%=gyms.length%> | 34 | <%=gyms.length%> |
| 35 | -</h3> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 35 | +</p> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| 1 | -<h1>🌳 도시공원 현황</h1> | 1 | +<h4>🌳 도시공원 현황</h4> |
| 2 | <table class="table"> | 2 | <table class="table"> |
| 3 | <thead class="thead-dark"> | 3 | <thead class="thead-dark"> |
| 4 | <tr> | 4 | <tr> |
| ... | @@ -20,6 +20,6 @@ | ... | @@ -20,6 +20,6 @@ |
| 20 | </tbody> | 20 | </tbody> |
| 21 | 21 | ||
| 22 | </table> | 22 | </table> |
| 23 | -<h3>총 도시공원 개수 : | 23 | +<p class = "sum">총 도시공원 개수 : |
| 24 | <%=city_parks.length%> | 24 | <%=city_parks.length%> |
| 25 | -</h3> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 25 | +</p> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| 1 | -<h1>📷 CCTV 현황</h1> | 1 | +<h4>📷 CCTV 현황</h4> |
| 2 | 2 | ||
| 3 | <table class="table"> | 3 | <table class="table"> |
| 4 | <thead class="thead-dark"> | 4 | <thead class="thead-dark"> |
| ... | @@ -21,9 +21,9 @@ | ... | @@ -21,9 +21,9 @@ |
| 21 | </tbody> | 21 | </tbody> |
| 22 | </table> | 22 | </table> |
| 23 | 23 | ||
| 24 | +<hr style = "border:dotted 1px gray; width : 50%;"> | ||
| 24 | 25 | ||
| 25 | - | 26 | +<h4>💡 보안등 현황</h4> |
| 26 | -<h1>💡 보안등 현황</h1> | ||
| 27 | 보안등 소재지 지번주소 : | 27 | 보안등 소재지 지번주소 : |
| 28 | <table class="table"> | 28 | <table class="table"> |
| 29 | <thead class="thead-dark"> | 29 | <thead class="thead-dark"> | ... | ... |
| 1 | -<h1>📚 도서관 현황</h1> | 1 | +<h4>📚 도서관 현황</h4> |
| 2 | 2 | ||
| 3 | 3 | ||
| 4 | <table class="table"> | 4 | <table class="table"> |
| ... | @@ -31,13 +31,11 @@ | ... | @@ -31,13 +31,11 @@ |
| 31 | </tbody> | 31 | </tbody> |
| 32 | </table> | 32 | </table> |
| 33 | 33 | ||
| 34 | +<hr style = "border:dotted 1px gray; width : 50%;"> | ||
| 34 | 35 | ||
| 35 | -<h3>총 도서관 개수 : | ||
| 36 | - <%=librarys.length%> | ||
| 37 | -</h3> | ||
| 38 | 36 | ||
| 39 | 37 | ||
| 40 | -<h1>📒 학원 현황 </h1> | 38 | +<h4>📒 학원 현황 </h4> |
| 41 | 39 | ||
| 42 | <table class="table"> | 40 | <table class="table"> |
| 43 | <thead class="thead-dark"> | 41 | <thead class="thead-dark"> |
| ... | @@ -65,7 +63,10 @@ | ... | @@ -65,7 +63,10 @@ |
| 65 | </tbody> | 63 | </tbody> |
| 66 | </table> | 64 | </table> |
| 67 | 65 | ||
| 66 | +<p class = "sum">총 도서관 개수 : | ||
| 67 | + <%=librarys.length%> | ||
| 68 | +</p> | ||
| 68 | 69 | ||
| 69 | -<h3>학원 및 교습소 개수 : | 70 | +<p class = "sum">학원 및 교습소 개수 : |
| 70 | <%=institutes.length%> | 71 | <%=institutes.length%> |
| 71 | -</h3> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 72 | +</p> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| 1 | -<h1>🛍 시장 및 마트 현황</h1> | 1 | +<h4>🛍 시장 및 마트 현황</h4> |
| 2 | 2 | ||
| 3 | 3 | ||
| 4 | <table class="table"> | 4 | <table class="table"> |
| ... | @@ -26,6 +26,6 @@ | ... | @@ -26,6 +26,6 @@ |
| 26 | 26 | ||
| 27 | 27 | ||
| 28 | 28 | ||
| 29 | -<h3>총 쇼핑몰 개수 : | 29 | +<p class ="sum">총 쇼핑몰 개수 : |
| 30 | <%=shops.length%> | 30 | <%=shops.length%> |
| 31 | -</h3> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 31 | +</p> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| 1 | -<h1>🚌 버스 현황</h1> | 1 | +<h4>🚌 버스 현황</h4> |
| 2 | 2 | ||
| 3 | <table class="table"> | 3 | <table class="table"> |
| 4 | <thead class="thead-dark"> | 4 | <thead class="thead-dark"> |
| ... | @@ -20,14 +20,12 @@ | ... | @@ -20,14 +20,12 @@ |
| 20 | <%}%> | 20 | <%}%> |
| 21 | </tbody> | 21 | </tbody> |
| 22 | </table> | 22 | </table> |
| 23 | -<h3>총 버스정류장 개수 : | ||
| 24 | - <%=busStations.length%> | ||
| 25 | -</h3> | ||
| 26 | 23 | ||
| 27 | 24 | ||
| 28 | 25 | ||
| 26 | +<hr style = "border:dotted 1px gray; width : 50%;"> | ||
| 29 | 27 | ||
| 30 | -<h1>🚆 지하철역 현황</h1> | 28 | +<h4>🚆 지하철역 현황</h4> |
| 31 | 29 | ||
| 32 | <table class="table"> | 30 | <table class="table"> |
| 33 | <thead class="thead-dark"> | 31 | <thead class="thead-dark"> |
| ... | @@ -53,6 +51,9 @@ | ... | @@ -53,6 +51,9 @@ |
| 53 | <%}%> | 51 | <%}%> |
| 54 | </tbody> | 52 | </tbody> |
| 55 | </table> | 53 | </table> |
| 56 | -<h3>총 지하철역 개수 : | 54 | +<p class="sum">총 버스정류장 개수 : |
| 55 | + <%=busStations.length%> | ||
| 56 | +</p> | ||
| 57 | +<p class = "sum">총 지하철역 개수 : | ||
| 57 | <%=subwayStations.length%> | 58 | <%=subwayStations.length%> |
| 58 | -</h3> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 59 | +</p> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
-
Please register or login to post a comment