Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
Binary file added assets/example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
104 changes: 87 additions & 17 deletions css/login.css
Original file line number Diff line number Diff line change
@@ -1,26 +1,20 @@
:root {
--gray-900: #111827;
--gray-800: #1F2937;
--gray-800: #1f2937;
--gray-700: #374151;
--gray-600: #4B5563;
--gray-500: #6B7280;
--gray-400: #9CA3AF;
--gray-200: #E5E7EB;
--gray-100: #F3F4F6;
--gray-50: #F9FAFB;
--blue: #3692FF;
--gray-600: #4b5563;
--gray-500: #6b7280;
--gray-400: #9ca3af;
--gray-200: #e5e7eb;
--gray-100: #f3f4f6;
--gray-50: #f9fafb;
--blue: #3692ff;
}

* {
box-sizing: border-box;
}

body {
margin: 0;
}

.empty-area {
height: 231px;
padding: 0;
}

.hearder {
Expand All @@ -29,6 +23,14 @@ body {
justify-content: center;
}

.panda-logo-a {
margin-top: 231px;
}

#join {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

불필요한 코드 같네요! 🤔

margin-bottom: 231px;
}

.panda-logo-img {
width: 396px;
height: 132px;
Expand Down Expand Up @@ -66,8 +68,8 @@ body {
}

.eyes {
width: 20.47px;
height: 18.07px;
width: 20px;
height: 18px;
position: relative;
top: 5px;
right: 50px;
Expand Down Expand Up @@ -140,3 +142,71 @@ body {
.join-first {
color: var(--gray-800);
}

@media (max-width: 1199px) {
.panda-logo-a {
margin-top: 190px;
}

#join {
margin-bottom: 325px;
}
}

@media (max-width: 766px) {
.panda-logo-a {
display: block;
width: fit-content;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fit-content와 block을 사용하신 이유는 무엇일까요!? 속성 하나하나 짚어가시면 좋습니다 :)

margin: 0 auto;
margin-top: 80px;
}

.panda-logo-img {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

반응형 이미지로 picture를 사용해보셔도 좋아요!

width: 198px;
height: 66px;
margin: 0;
}

.hearder {
max-width: 400px;
width: 100%;
}

.form label {
width: 100%;
max-width: 400px;
margin-bottom: 8px;
}

.form input {
width: 100%;
max-width: 400px;
margin-bottom: 16px;
}

.password-check-flex {
width: 100%;
max-width: 400px;
margin-bottom: 16px;
height: 56px;
}

.form button {
width: 100%;
max-width: 400px;
}

.eyes {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image
어떤 이유로 %가 들어갔을까요!? 요구 사항과 다르게 간격이 너무 멀어지는 거 같습니다!

top: -95%;
left: 85%;
}

.simple-login {
width: 100%;
max-width: 400px;
}

#join {
margin-bottom: 231px;
}
}
100 changes: 83 additions & 17 deletions css/signup.css
Original file line number Diff line number Diff line change
@@ -1,30 +1,28 @@
:root {
--gray-900: #111827;
--gray-800: #1F2937;
--gray-800: #1f2937;
--gray-700: #374151;
--gray-600: #4B5563;
--gray-500: #6B7280;
--gray-400: #9CA3AF;
--gray-200: #E5E7EB;
--gray-100: #F3F4F6;
--gray-50: #F9FAFB;
--blue: #3692FF;
--gray-600: #4b5563;
--gray-500: #6b7280;
--gray-400: #9ca3af;
--gray-200: #e5e7eb;
--gray-100: #f3f4f6;
--gray-50: #f9fafb;
--blue: #3692ff;
}

* {
box-sizing: border-box;
}

body {
margin: 0;
padding: 0;
}

.empty-area {
height: 231px;
.panda-logo-a {
margin-top: 60px;
}

.empty-bottom {
height: 407px;
.join {
margin-bottom: 178px;
}

.hearder {
Expand Down Expand Up @@ -106,8 +104,8 @@ body {
}

.eyes {
width: 20.47px;
height: 18.07px;
width: 20px;
height: 18px;
position: relative;
top: 5px;
right: 50px;
Expand Down Expand Up @@ -141,3 +139,71 @@ body {
.join-first {
color: var(--gray-800);
}

@media (max-width: 1199px) {
.panda-logo-a {
margin-top: 48px;
}

.join {
margin-bottom: 243px;
}
}

@media (max-width: 766px) {
.panda-logo-a {
display: block;
width: fit-content;
margin: 0 auto;
margin-top: 24px;
}

.panda-logo-img {
width: 198px;
height: 66px;
margin: 0;
}

.hearder {
max-width: 400px;
width: 100%;
}

.form label {
width: 100%;
max-width: 400px;
margin-bottom: 8px;
}

.form input {
width: 100%;
max-width: 400px;
margin-bottom: 16px;
}

.password-check-flex {
width: 100%;
max-width: 400px;
margin-bottom: 16px;
height: 56px;
}

.form button {
width: 100%;
max-width: 400px;
}

.eyes {
top: -95%;
left: 85%;
}

.simple-login {
width: 100%;
max-width: 400px;
}

.join {
margin-bottom: 179px;
}
}
Loading
Loading