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
51 changes: 36 additions & 15 deletions signup.css → auth.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,54 +2,62 @@ html {
color: var(--gray800);
}

body {
padding: 10vh 0;
}

.wrap {
max-width: 640px;
width: 100%;
margin: 0 auto;
}

.logo {
margin-top: 240px;
}

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

.logo img {
.logo img {
width: 60%;
}

.signup-form{
.login-form,
.signup-form {
display: flex;
flex-direction: column;
gap: 24px;
margin-top: 40px;
margin-top: 55px;
}

.input-group{
.input-group {
display: flex;
flex-direction: column;
gap: 16px;
position: relative;
}

.input-group input{
.input-group input {
padding: 16px 24px;
background-color: var(--gray100);
border-width: 0;
border-radius: 12px;
}

.input-group img {
.input-group button {
position: absolute;
right: 24px;
bottom: 16px;
width: 24px;
height: 24px;
padding: 0px;
background-color: transparent;
}

.input-group img {
width: 100%;
}

.simple-login{
.simple-login {
display: flex;
justify-content: space-between;
align-items: center;
Expand All @@ -59,22 +67,35 @@ html {
background-color: #E6F2FF;
}

.simple-login ul{
.simple-login ul {
display: flex;
gap: 16px;
}

.simple-login ul li img{
.simple-login ul li img {
width: 42px;
}

.to-login{
.to-signup,
.to-login {
display: flex;
justify-content: center;
gap: 4px;
margin-top: 24px;
}

.to-signup a,
.to-login a {
text-decoration: underline;
}

/* Mobile */
@media (min-width:375px) and (max-width:767px) {
body {
padding: 10vh 16px;
}

.wrap {
max-width: 400px;
}
}
21 changes: 21 additions & 0 deletions common.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
* {
box-sizing: border-box;
}

html {
font-family: Pretendard, sans-serif;
font-size: 16px;
}

:root {
--gray900: #111827;
--gray800: #1F2937;
--gray700: #374151;
--gray600: #4B5563;
--gray500: #6B7280;
--gray400: #9CA3AF;
--gray200: #E5E7EB;
--gray100: #F3F4F6;
--gray50: #F9FAFB;
--blue: #3692FF;
}
Comment on lines +10 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.

💊 제안
css 변수들을 분리하신 점 좋습니다. 다만 figma에 정의된 색상 변수보다 수가 더 적은 것 같아요~

스크린샷 2025-03-13 오후 3 22 14 스크린샷 2025-03-13 오후 3 23 55

큰 이유가 없다면 figma와 동일하게 색상 변수를 선언하시는 것이 좋습니다.
그래야 figma에서 해당 색상 변수가 사용될때 확인하기 쉽고 색상값은 디자이너와 의사 소통할 일이 많은 값이라 소통 측면에서도 같은 이름을 쓰는 것이 좋기 때문입니다~

File renamed without changes
File renamed without changes
Binary file modified images/logo_lg.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 modified images/logo_sm.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 images/logo_typo.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 images/og_image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading