From 8418fe93a29f7828a11c7448c76628c212881f24 Mon Sep 17 00:00:00 2001 From: JTH Date: Wed, 12 Apr 2023 18:56:56 +0900 Subject: [PATCH] revised --- .DS_Store | Bin 0 -> 6148 bytes index.html | 99 ++++++++++++++++++++++++++ style.css | 205 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 304 insertions(+) create mode 100644 .DS_Store create mode 100644 index.html create mode 100644 style.css diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..d8142bb55ff60d6c0b8109520cbab56d2781b87f GIT binary patch literal 6148 zcmeHKOG*Pl5PhXV65V7euKEN6;swSqS-5bc7tnk_VKhP_=x&zY#v|&hs#Y@NEL@3% zD(HUIU7zWGFx_1MWb(W?1;zk|Y>J{vkLYx-X)ikuh+;WjP~Z+5JfQAL^dF~m?T5I> zBNkX#WBX6kJ2Mw?LAT0&z|#xi5$NDDI u?S@T7{Tfv$)LV}L4)h#3Hly2<>hvo!HjbJ_=PjHV4*?@2x?tcB82ALNnn1k( literal 0 HcmV?d00001 diff --git a/index.html b/index.html new file mode 100644 index 0000000..90d3515 --- /dev/null +++ b/index.html @@ -0,0 +1,99 @@ + + + + + + + myProfile + + + + + + + + +
+
+
+
JTH WkdWkdman
+
+
+

+ 안녕하세요!
저는 정태현입니다 

+ 서강대 사학&컴공 20
+ 멋쟁이 사자처럼 11기
+      Back-end +

+
+
+

+
+   97.04.13
 nex_david@naver.com
+ +  nexdavid2020 +
+ + nexdavid_
+ Beakjoon:   199haram
+

+
+
+ +
+
+
+

+

[인생영화]
Harry Potter

+
+
+
+

+

+ [MBTI]
+ ENTJ
+ 대담한 통솔자 +

+
+
+

+ [좋아하는 음식]
초밥
+ 고기
새우
돼지갈비 +

+
+
+ +
+ +
+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..7c590e3 --- /dev/null +++ b/style.css @@ -0,0 +1,205 @@ +* { + box-sizing: border-box; + margin: 0; +} + +body { + background-color: #f8f8f8; +} + +header { + height: 40px; + background-color: #333; +} + +main { + height: 600px; + width: 750px; + margin: 0 auto; + background-color: ghostwhite; +} + +footer { + height: 200px; + width: 750px; + background-color: greenyellow; + margin: 0 auto; + border-radius: 10px; +} + +#top { + height: 35px; + background-color: rgb(141, 215, 244); + border-radius: 0 0 10px 10px; + margin: 0px 0px 25px 0px; + color: white; + font-size: 18px; + text-align: center; + line-height: 35px; +} + +#container { + height: 410px; + padding: 10px; + background-color: ghostwhite; + display: flex; + flex-wrap: wrap; + justify-content: space-around; + align-content: space-around; +} + +aside { + height: 110px; + background-color: ghostwhite; + margin-bottom: 60px; + margin: 0 15px 60px 15px; + display: flex; + justify-content: space-between; +} + +section { + width: 30%; + height: 45%; + background-color: white; + border-radius: 7px; + font-family: "Gamja Flower", cursive; + font-size: 22px; + color: goldenrod; + padding: 5px; +} + +#team { + width: 470px; + height: 100%; + background-color: #31999c; + color: white; + border-radius: 5px; + font-family: "Gamja Flower", cursive; + font-size: 22px; + color: springgreen; + padding: 5px; +} + +#hi { + width: 230px; + height: 100%; + background-color: pink; + color: black; + border-radius: 5px; + + font-family: "Gamja Flower", cursive; + font-size: 22px; + color: purple; + padding: 5px; + text-align: center; +} + +img.myphoto { + width: 100%; + height: 100%; + border-radius: 7px; +} + +section p { + text-align: center; + position: relative; +} + +#movie { + padding: 30px; + background-image: url("./images/harryPotter.png"); + background-size: cover; + position: relative; + height: 45%; + width: 30%; + text-align: center; + z-index: 1; +} + +.movie_sub { + top: 0; + left: 0; + + position: absolute; + background-color: rgba(0, 0, 0, 0.5); + width: 100%; + height: 100%; +} + +#mbti { + /* padding: 30px; */ + background-image: url("./images/entj.png"); + background-size: cover; + /* 부모를 realtive로 하고 */ + position: relative; + color: tomato; + height: 45%; + width: 30%; + text-align: center; +} + +.mbti_sub { + /* 자식을 absolute로 하고 */ + top: 0; + left: 0; + /* + width: 100%; + height: 100%; + background-color: rgba(101, 97, 97, 0.4); + text-align: center; + color: orange; */ + background-color: rgba(0, 0, 0, 0.5); + width: 100%; + height: 100%; + border-radius: 5px; + position: absolute; +} + +#team p { + text-align: center; +} +#hi span { + text-align: center; +} + +#food { + padding: 30px; +} + +footer { + height: 200px; + background-color: white; + text-align: center; + color: rgb(170, 170, 170); + padding: 50px; +} + +#main:hover { + transform: scale(1.4); + transition: all 0.2s linear; +} + +#info:hover { + transform: scale(1.4); + transition: all 0.2s linear; +} + +#photo:hover { + transform: scale(1.4); + transition: all 0.2s linear; +} + +#movie:hover { + transform: scale(1.4); + transition: all 0.2s linear; +} + +#mbti:hover { + transform: scale(1.4); + transition: all 0.2s linear; +} + +#food:hover { + transform: scale(1.4); + transition: all 0.2s linear; +}