diff --git a/README.md b/README.md index 6453761..0b611a5 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # 11th_HTML-CSS -4월 5일 세션에 대한 미니 프로젝트 과제를 제출하는 레포입니다. + +지금은 4월 12일 18시57분 diff --git a/home.html b/home.html new file mode 100644 index 0000000..94610b3 --- /dev/null +++ b/home.html @@ -0,0 +1,87 @@ + + + + + + + Document + + + +
+
+ PC화면에서 접속해주세요! +
+
+
+
My profile
+
+
+

+ [내 프로필]
+ 이름 : 김규빈
+ 포지션 : 백엔드
+ 학과 : 영문과
+ 생년월일 : 2001.03.14 +

+
+ +
+
+

+ [MBTI]
+ ESTP
+ 모험을 즐기는 사업가
+

+
+ +
+

+ [좋아하는 음식]
+ 초밥
+ 고기
+

+
+ +
+
+

+ [인생영화]
+ 해리포터
+

+
+
+

+ [요즘 자주 듣는 노래]
+ 헤이즈 - 비가오는날엔
+

+
+
+
+

+ [취미]
+ 롤
+

+
+
+ +
+ +
+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..482bc90 --- /dev/null +++ b/style.css @@ -0,0 +1,163 @@ +@font-face { + font-family: 'TTCrownMychewR'; + src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2205@1.0/TTCrownMychewR.woff2') format('woff2'); + font-weight: normal; + font-style: normal; +} +*{ + box-sizing: border-box; + margin: 0; + font-family: 'TTCrownMychewR'; +} + +header{ + height: 40px; + background-color: #333; +} + +main{ + height: 600px; + width: 750px; + margin: 0 auto; + background-color: #f8f8f8; +} +#alert{ + display: none; + text-align: center; + padding-top: 300px; +} +@media(max-width: 800px){ + #main-container{ + display: none; + } + + #alert{ + display: block; + } +} +footer{ + height: 200px; + background-color: white; + text-align: center; + color: rgb(170, 170, 170); + padding: 50px; + +} + +#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; + 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; + flex-wrap: wrap; + justify-content: space-between; + align-content: center; +} +aside p { + padding: 30px; + text-align: center; +} +section{ + height: 45%; + width: 30%; + background-color: white; + border-radius: 7px; +} +section p { + padding: 30px; + text-align: center; + position: relative; +} +#mbti{ + background-image: url("./images/estp.png"); + background-size: cover; + height: 45%; + width: 30%; + font-family: 'TTCrownMychewR'; + position: relative; + color: white; +} +#mbti:hover{ + transform: scale(1,4); + transition: all 02.s linear; +} +#movie{ + background-image: url("./images/potter.jpeg"); + background-size: cover; + height: 45%; + width: 30%; + position: relative; + color: white; +} +#movie:hover{ + transform: scale(1,4); + transition: all 02.s linear; +} +.bg{ + background-color: rgba(0,0,0,0.5); + width: 100%; + height: 100%; + border-radius: 5px; + position: absolute; +} +#music{ + /* background-image: url("./images/heize.jpeg"); + background-size: cover; */ + height: 45%; + width: 30%; + font-family: 'TTCrownMychewR'; +} +#hobby{ + background-image: url("./images/lol.jpeg"); + background-size: cover; + height: 45%; + width: 30%; + position: relative; + color: white; +} +#hobby:hover{ + transform: scale(1,4); + transition: all 02.s linear; +} +#team{ + width: 470px; + height: 100%; + background-color: #9cb4d4; + color: white; + border-radius: 5px; + font-size: 15px; + font-family: 'TTCrownMychewR'; +} + + +#hi{ + width: 230px; + height: 100%; + background-color: pink; + color: black; + border-radius: 5px; + font-size: 15px; + font-family: 'TTCrownMychewR'; + text-align: center; +} \ No newline at end of file