diff --git a/README.md b/README.md index 6453761..b40c265 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # 11th_HTML-CSS -4월 5일 세션에 대한 미니 프로젝트 과제를 제출하는 레포입니다. +20201148 정인영 과제 제출하겠습니다~ \ No newline at end of file diff --git a/home.html b/home.html new file mode 100644 index 0000000..ef38f73 --- /dev/null +++ b/home.html @@ -0,0 +1,89 @@ + + + + + + + + Git Clone Session + + + + + + + Git Clone Session + + + + + + + + Git Clone Session + + + +
+
+
+
디버깅 4조
+
+
+

+

+ 모두 화이팅..! github 어지럽네요 - 정인영 +

+

+
+
+

+

안녕하세요 - 정연

+

+
+
+

+

김성현

+ 오늘 너무 피곤합니다ㅠ
+ a +

+
+
+

+

신선희 짱짱짱짱짱맨

+

+
+
+

+

강민석

+ 고생했어요 ㅎㅎㅎㅎ + ㅎㅎㅎㅎㅎㅎㅎ + github 어렵다... +

+
+
+

+ Sending Pull Request +

송경호

+

+
+
+
+ 오늘 세션도 화이팅! + 나도 화이팅! + sunghyun branch에서 수정! +
+ +
+ +
+
+ PC화면에서 접속해주세요! +
+ + + + + + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..efc1498 --- /dev/null +++ b/style.css @@ -0,0 +1,125 @@ +@font-face { + font-family: 'SeoulNamsanM'; + src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/SeoulNamsanM.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +*{ + box-sizing: border-box; + margin: 0; + font-family: 'SeoulNamsanM'; + line-height: 20px; +} + +body{ + background-color: #f8f8f8; +} + +header{ + height: 40px; + background-color: #333; +} + +main{ + height: 600px; + width: 750px; + margin: 0 auto; + background-color: #f8f8f8; + box-shadow: 10px 10px 20px gray; +} + +#top{ + height: 35px; + background-color: #f0cdea; + margin-bottom: 25px; + border-radius: 0 0 10px 10px; + color: white; + font-size: 18px; + text-align: center; + line-height: 35px; +} + +#container{ + height: 410px; + padding: 10px; + /* flex(wrap)으로 section 배치*/ + display: flex; + flex-wrap: wrap; + justify-content: space-around; + align-content: space-around; +} + +aside{ + height: 110px; + background-color: #f8f8f8; + margin-bottom: 60px; + margin: 0 15px 60px 15px; + display: flex; + justify-content: space-around; + align-items: space-around; +} + +section { + height: 45%; + width: 30%; + border-radius: 7px; + text-align: center; + display: block; + background-color: white; + justify-content: center; +} + +section p { + padding: 10px; + text-align: center; + position: relative; +} + +#team{ + width: 470px; + height: 100%; + background-color: #31999c; + color: white; + border-radius: 5px; + font-size: 15px; + padding: 20px; + text-align: center; +} + +#hi{ + width: 230px; + height: 100%; + background-color: pink; + color: black; + border-radius: 5px; + font-size: 15px; + padding: 20px; + text-align: center; +} + +#alert { + display: none; + text-align: center; + padding-top: 300px; +} + +footer{ + height: 200px; + background-color: white; + text-align: center; + color: rgb(170, 170, 170); + padding: 50px; +} + +@media(max-width: 800px) { + #main-container { + display: none; + } + + #alert { + display: block; + } +} + +