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 added assets/img_home_01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img_home_02.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img_home_03.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img_home_bottom.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img_home_top.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/visibility_off.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/visibility_on.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
74 changes: 47 additions & 27 deletions css/auth.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,69 +2,76 @@ main {
display: flex;
flex-direction: column;
justify-content: center;
margin: 231px auto;
margin: 0 auto;
width: 640px;
height: 618px;
}

.logo-auth-box {
display: flex;
justify-content: center;
display: flex;
justify-content: center;
}

.logo-auth-box img{
width: 396px;
height: 132px;
.logo-auth-box a {
margin: 0 auto;
display: block;
margin-top: 24px;
margin-bottom: 24px;
}

.cont-area {
margin-top: 40px;
.logo-auth-box img{
width: 396px;
}

.group-inp {
height: 98px;
.group-input {
display: flex;
flex-direction: column;
margin-bottom: 24px;
}

.group-inp label {
.group-input label {
color: var(--gray-800);
font-weight: 700;
font-size: 18px;
line-height: 26px;
margin-bottom: 16px;
}

.group-inp input {
.group-input input {
background-color: var(--gray-100);
width: 100%;
height: 56px;
border: none;
border-radius: 12px;
margin: 16px 0 24px;
font-size: 16px;
font-weight: 400;
line-height: 26px;
vertical-align: middle;
padding-left: 24px;
padding: 16px 24px;
outline: none;
}

#inputPwd {
.input-font {
font-size: 18px;
color: var(--gray-800);
}

.inputPwd-wrap {
position: relative;
display: flex;
align-items: center;
}

.inputPwd-wrap i {
.inputPwd-wrap .toggle-password {
width: 24px;
position: absolute;
top: 34px;
right: 16px;
right: 24px;
cursor: pointer;
}

.inputPwd-wrap img {
width: 100%;
border: none;
}

.login-btn {
width: 100%;
padding: 16px 124px;
Expand Down Expand Up @@ -107,16 +114,29 @@ main {
}

.sign-up-link {
display: flex;
justify-content: center;
margin-top: 24px;
gap: 4px;
font-size: 14px;
font-weight: 500;
line-height: 24px;
display: flex;
justify-content: center;
margin-top: 24px;
gap: 4px;
font-size: 14px;
font-weight: 500;
line-height: 24px;
}

.sign-up-link a {
color: var(--blue-100);
text-decoration: underline;
}

/* Mobile */
@media (max-width: 767px) {
main {
max-width: 400px;
padding: 0 16px;
margin: 0 auto;
}

.logo-auth-box img {
width: 198px;
}
}
19 changes: 0 additions & 19 deletions css/palette.css

This file was deleted.

25 changes: 25 additions & 0 deletions css/reset.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,35 @@
/* Reset CSS - Enhanced Version */
:root {
--gray-900: #111827;
--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-300: #1251AA;
--blue-200: #1967D6;
--blue-100: #3692FF;
--blue-light: #CFE5FF;

--gray: #FCFCFC;
--white: #FFFFFF;
}

Comment on lines +2 to +21
Copy link
Collaborator

Choose a reason for hiding this comment

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

❗️ 수정요청
특정 코드를 분류하는 기준을 추측할 수 있는 가장 큰 단서가 이름이라고 생각합니다.
reset 이라는 파일명을 통해 브라우저 스타일을 초기화하는 코드의 모음이라고 예상할 수 있습니다~
다만 css 변수 선언은 이러한 기준과 잘 맞지 않는다고 생각합니다!

만약 변수만 파일을 분리하시는 것이 싫으셨던 것이라면 해당 변수는 모든 페이지에서 걸쳐서 사용되는 코드이므로 common.css, base.css와 같은 식으로 공통 코드들을 모아두는 파일을 생성하시고 그 안에 두시면 좋겠습니다!

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
word-break: keep-all;
font-family: "Pretendard", sans-serif;
}

a {
text-decoration: none;
}
Expand Down
Loading
Loading