├── .DS_Store ├── .gitattributes ├── .gitignore ├── README.md ├── Screens ├── chat.PNG ├── find.PNG ├── friends.PNG └── more.PNG ├── chat.html ├── chats.html ├── css ├── bigScreen.css ├── chat.css ├── chats.css ├── find.css ├── friends.css ├── globals.css ├── header.css ├── mobile.css ├── more.css ├── navigation.css ├── profile.css ├── reset.css ├── search-bar.css └── style.css ├── find.html ├── images ├── .DS_Store ├── avatar.jpg ├── kakaoFriends.png ├── kakaoStory.png └── path.png ├── index.html ├── more.html └── profile.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/kakao-clone/ee256873eaf7f3d383205a0fd640e1c5157ddd43/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # kakao-clone 2 | -------------------------------------------------------------------------------- /Screens/chat.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/kakao-clone/ee256873eaf7f3d383205a0fd640e1c5157ddd43/Screens/chat.PNG -------------------------------------------------------------------------------- /Screens/find.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/kakao-clone/ee256873eaf7f3d383205a0fd640e1c5157ddd43/Screens/find.PNG -------------------------------------------------------------------------------- /Screens/friends.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/kakao-clone/ee256873eaf7f3d383205a0fd640e1c5157ddd43/Screens/friends.PNG -------------------------------------------------------------------------------- /Screens/more.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomadcoders/kakao-clone/ee256873eaf7f3d383205a0fd640e1c5157ddd43/Screens/more.PNG -------------------------------------------------------------------------------- /chat.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |