-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from Likelion12-KNU/responsive-web
[Feat] 반응형 웹페이지 제작 및 버그 수정
- Loading branch information
Showing
16 changed files
with
671 additions
and
227 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,5 +39,10 @@ | |
|
||
#main_mapper { | ||
display: flex; | ||
|
||
width: 102%; | ||
height: 100%; | ||
} | ||
.container{ | ||
width: 100%; | ||
height: 100%; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,115 @@ | ||
body{ | ||
display: flex; | ||
height: 100vh; | ||
justify-content: center; | ||
background-color: black; | ||
} | ||
body::-webkit-scrollbar{ | ||
width: 0px; | ||
background-color: black; | ||
} | ||
|
||
#page_title{ | ||
position: fixed; | ||
left: 80px; | ||
top: 80px; | ||
color: white; | ||
|
||
@media screen and (max-width:400px) { | ||
body{ | ||
display: flex; | ||
width: 100%; | ||
height: 100vh; | ||
justify-content: center; | ||
align-items: center; | ||
background-color: black; | ||
} | ||
body::-webkit-scrollbar{ | ||
width: 0px; | ||
background-color: black; | ||
} | ||
body::-webkit-scrollbar-thumb{ | ||
width: 0px; | ||
background-color: black; | ||
} | ||
|
||
#page_title{ | ||
position: fixed; | ||
left: 80px; | ||
top: 80px; | ||
color: white; | ||
} | ||
#page_title h1:last-child{ | ||
color: #B6B6B6; | ||
} | ||
#root{ | ||
|
||
|
||
width: 102vw; | ||
height: 100%; | ||
background-color: black; | ||
|
||
|
||
} | ||
|
||
} | ||
#page_title h1:last-child{ | ||
color: #B6B6B6; | ||
|
||
@media screen and (max-width:770px) { | ||
body{ | ||
display: flex; | ||
width: 100vw; | ||
height: 100vh; | ||
justify-content: center; | ||
align-items: center; | ||
background-color: black; | ||
} | ||
body::-webkit-scrollbar{ | ||
width: 0px; | ||
background-color: black; | ||
} | ||
body::-webkit-scrollbar-thumb{ | ||
width: 0px; | ||
background-color: black; | ||
} | ||
|
||
#page_title{ | ||
position: fixed; | ||
left: 80px; | ||
top: 80px; | ||
color: white; | ||
} | ||
#page_title h1:last-child{ | ||
color: #B6B6B6; | ||
} | ||
#root{ | ||
|
||
|
||
width: 115vw; | ||
height: 100%; | ||
background-color: black; | ||
|
||
|
||
} | ||
|
||
} | ||
#root{ | ||
|
||
width: 50%; | ||
height: 100%; | ||
background-color: black; | ||
|
||
|
||
|
||
|
||
@media screen and (min-width:770px) { | ||
body{ | ||
display: flex; | ||
width: 100%; | ||
height: 100vh; | ||
justify-content: center; | ||
background-color: black; | ||
} | ||
body::-webkit-scrollbar{ | ||
width: 0px; | ||
background-color: black; | ||
} | ||
|
||
#page_title{ | ||
position: fixed; | ||
left: 80px; | ||
top: 80px; | ||
color: white; | ||
} | ||
#page_title h1:last-child{ | ||
color: #B6B6B6; | ||
} | ||
#root{ | ||
|
||
width: 100%; | ||
height: 100%; | ||
background-color: black; | ||
|
||
|
||
} | ||
|
||
} | ||
|
Oops, something went wrong.