-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[박종찬] sprint3 #94
The head ref may contain hidden characters: "Basic-\uBC15\uC885\uCC2C"
[박종찬] sprint3 #94
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -4,14 +4,15 @@ html { | |||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
header { | ||||||||||||||||||||||||||||
position: fixed; | ||||||||||||||||||||||||||||
position:fixed; | ||||||||||||||||||||||||||||
top: 0; | ||||||||||||||||||||||||||||
z-index: 99; /*내가 보이게 하도록 넣음*/ | ||||||||||||||||||||||||||||
left: 0; | ||||||||||||||||||||||||||||
z-index: 99; /* 가려지는 상황이 있어 임의로 추가함.*/ | ||||||||||||||||||||||||||||
width: 100%; | ||||||||||||||||||||||||||||
height: 70px; | ||||||||||||||||||||||||||||
border-bottom: 1px solid var(--white-5); | ||||||||||||||||||||||||||||
padding: 0 200px; /*figma에는 9 400 주라고 되어있는데?*/ | ||||||||||||||||||||||||||||
gap: 10px; /* 이것도 없음 */ | ||||||||||||||||||||||||||||
padding: 0 200px; /*figma에는 9 400 주라고 되어있는데, 답지(?)에는 이렇게 있어요.*/ | ||||||||||||||||||||||||||||
gap: 10px; | ||||||||||||||||||||||||||||
background-color: var(--white); | ||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||
justify-content: space-between; | ||||||||||||||||||||||||||||
|
@@ -65,6 +66,7 @@ main { | |||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.sectionAll { | ||||||||||||||||||||||||||||
margin: 70px auto; | ||||||||||||||||||||||||||||
width: 100%; | ||||||||||||||||||||||||||||
height: 540px; | ||||||||||||||||||||||||||||
background-color: var(--white-4); | ||||||||||||||||||||||||||||
|
@@ -95,6 +97,7 @@ main { | |||||||||||||||||||||||||||
line-height: 56px; | ||||||||||||||||||||||||||||
color: var(--gray-700); | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
#see { | ||||||||||||||||||||||||||||
border-radius: 40px; | ||||||||||||||||||||||||||||
padding: 16px 124px; | ||||||||||||||||||||||||||||
|
@@ -123,7 +126,8 @@ main { | |||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||
justify-content: center; | ||||||||||||||||||||||||||||
align-items: center; | ||||||||||||||||||||||||||||
margin: 100px 0; /* reset css라는 것을 실행후 figma에서 보여지는 것과 다르게 article이 붙어 있어 수정하였습니다. */ | ||||||||||||||||||||||||||||
margin: 100px 0; | ||||||||||||||||||||||||||||
/* reset css라는 것을 실행후 figma에서 보여지는 것과 다르게 article이 붙어 있어 임의로 수정하였습니다. */ | ||||||||||||||||||||||||||||
Comment on lines
+129
to
+130
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 넵넵 ~! 굳굳 👍 |
||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.wordBox2 { | ||||||||||||||||||||||||||||
|
@@ -204,3 +208,202 @@ footer { | |||||||||||||||||||||||||||
text-decoration: none; | ||||||||||||||||||||||||||||
color: inherit; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
/* Tablet 스타일 (768px ~ 1199px) 1505%이상의 화면*/ | ||||||||||||||||||||||||||||
@media (max-width:1199px){ | ||||||||||||||||||||||||||||
header { | ||||||||||||||||||||||||||||
padding: 0 24px | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.sectionAll { | ||||||||||||||||||||||||||||
height: 100%; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.mainBox { | ||||||||||||||||||||||||||||
height: 100%; | ||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||
flex-direction: column; | ||||||||||||||||||||||||||||
justify-content: center; | ||||||||||||||||||||||||||||
align-items: center; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.wordBox { | ||||||||||||||||||||||||||||
height: 100%; | ||||||||||||||||||||||||||||
width: 512px; | ||||||||||||||||||||||||||||
margin: 84px 116px; | ||||||||||||||||||||||||||||
gap:24px; | ||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||
justify-content: center; | ||||||||||||||||||||||||||||
align-items: center; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.mainWord { | ||||||||||||||||||||||||||||
text-align: center; | ||||||||||||||||||||||||||||
gap:24px; | ||||||||||||||||||||||||||||
font-size: 40px; | ||||||||||||||||||||||||||||
font-weight: 700; | ||||||||||||||||||||||||||||
line-height: 56px; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.break { | ||||||||||||||||||||||||||||
display: none; | ||||||||||||||||||||||||||||
white-space: nowrap; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.mainImage { | ||||||||||||||||||||||||||||
height: 100%; | ||||||||||||||||||||||||||||
width: 100%; | ||||||||||||||||||||||||||||
margin-top: 431px; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
#see { | ||||||||||||||||||||||||||||
height: 56px; | ||||||||||||||||||||||||||||
width:fit-content; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.articleImage { | ||||||||||||||||||||||||||||
width: 100%; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.articles { | ||||||||||||||||||||||||||||
width: 696px; | ||||||||||||||||||||||||||||
gap: 52px; | ||||||||||||||||||||||||||||
padding: 0; | ||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||
flex-direction: column; | ||||||||||||||||||||||||||||
justify-content: center; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
.article { | ||||||||||||||||||||||||||||
width: 100%; | ||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||
flex-direction: column; | ||||||||||||||||||||||||||||
justify-content: center; | ||||||||||||||||||||||||||||
align-items: start; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.reverseArticle { | ||||||||||||||||||||||||||||
flex-direction: column-reverse; | ||||||||||||||||||||||||||||
justify-content: center; | ||||||||||||||||||||||||||||
align-items: end; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.wordBox2 { | ||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||
flex-direction: column; | ||||||||||||||||||||||||||||
text-align: left; | ||||||||||||||||||||||||||||
padding-bottom: 24px; | ||||||||||||||||||||||||||||
gap: 12px; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
#word2 { | ||||||||||||||||||||||||||||
text-align: right; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
#bottomBox { | ||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||
justify-content:center; | ||||||||||||||||||||||||||||
align-items: center; | ||||||||||||||||||||||||||||
margin: 201px 224px 0; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
footer { | ||||||||||||||||||||||||||||
height: 160px; | ||||||||||||||||||||||||||||
padding: 32px 104px 64px; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
/* Mobile 스타일 (375px ~ 767px) 250%이상의 화면*/ | ||||||||||||||||||||||||||||
@media (max-width: 767px){ | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 굳굳 ~! 반응형을 잘 설정해두셨군요 😊 |
||||||||||||||||||||||||||||
header { | ||||||||||||||||||||||||||||
padding: 0 16px; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
header { | ||||||||||||||||||||||||||||
width: 100%; | ||||||||||||||||||||||||||||
gap: 126px; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
Comment on lines
+317
to
+324
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 혹시 두 개로 나눈 이유가 있으실까요?
Suggested change
|
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.break { | ||||||||||||||||||||||||||||
white-space: normal; | ||||||||||||||||||||||||||||
display: inline; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.wordBox { | ||||||||||||||||||||||||||||
width: 240px; | ||||||||||||||||||||||||||||
margin: 48px 68px; | ||||||||||||||||||||||||||||
padding: 0 0 60px; | ||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||
flex-direction: column; | ||||||||||||||||||||||||||||
gap: 18px; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
.mainImage{ | ||||||||||||||||||||||||||||
margin: 0; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.mainWord { | ||||||||||||||||||||||||||||
font-size: 32px; | ||||||||||||||||||||||||||||
font-weight: 700; | ||||||||||||||||||||||||||||
line-height: 44.8px; | ||||||||||||||||||||||||||||
text-align: center; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
#see { | ||||||||||||||||||||||||||||
padding: 16px 71px; | ||||||||||||||||||||||||||||
font-size: 18px; | ||||||||||||||||||||||||||||
font-weight: 600; | ||||||||||||||||||||||||||||
line-height: 26px; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.articles { | ||||||||||||||||||||||||||||
width: 334px; | ||||||||||||||||||||||||||||
gap: 10px; | ||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||
flex-direction: column; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.point { | ||||||||||||||||||||||||||||
font-size: 16px; | ||||||||||||||||||||||||||||
font-weight: 700; | ||||||||||||||||||||||||||||
line-height: 26px; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.articleContent { | ||||||||||||||||||||||||||||
font-size: 24px; | ||||||||||||||||||||||||||||
font-weight: 700; | ||||||||||||||||||||||||||||
line-height: 32px; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.detail { | ||||||||||||||||||||||||||||
font-size: 16px; | ||||||||||||||||||||||||||||
font-weight: 500; | ||||||||||||||||||||||||||||
line-height: 26px; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
#bottomBox { | ||||||||||||||||||||||||||||
margin: 121px 70px; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
footer { | ||||||||||||||||||||||||||||
display: grid; | ||||||||||||||||||||||||||||
grid-template-columns: 180px 120px; | ||||||||||||||||||||||||||||
grid-template-rows: 30px 30px; | ||||||||||||||||||||||||||||
gap: 30px 20px; | ||||||||||||||||||||||||||||
padding: 32px; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.codeit { | ||||||||||||||||||||||||||||
grid-row: 2/3; | ||||||||||||||||||||||||||||
grid-column: 1/2; | ||||||||||||||||||||||||||||
text-align: left; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
#center { | ||||||||||||||||||||||||||||
grid-row: 1/2; | ||||||||||||||||||||||||||||
grid-column: 1/2; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
.socialLink { | ||||||||||||||||||||||||||||
grid-row: 1/2; | ||||||||||||||||||||||||||||
grid-column: 2/3; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
@font-face { | ||
font-family: "ROKAF sans"; | ||
src: url(../../font/ROKAF\ Sans\ Bold.ttf); | ||
font-family: "ROKAF-sans"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 굳굳 👍 띄어쓰기보다는
|
||
src: url(../../font/ROKAF-Sans-Bold.ttf); | ||
} | ||
html { | ||
font-family: "Pretendard", "ROKAF sans", "Noto Sans KR", sans-serif; | ||
font-family: "Pretendard", "ROKAF-sans", "Noto Sans KR", sans-serif; | ||
} | ||
|
||
body { | ||
|
@@ -83,7 +83,10 @@ body { | |
gap: 10px; | ||
background-color: var(--gray-100); | ||
} | ||
.inputs:focus { | ||
outline: 2px solid var(--blue-100); | ||
Comment on lines
+86
to
+87
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 상태 선택자를 넣었군요 !좀 더 다채로운 UI가 되었을 것 같아요. 굳굳 👍 |
||
|
||
} | ||
.password { | ||
position: relative; | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
코드 전반적으로 프리티어 적용한 것 같은데, 여기는 왜인지 적용이 안되어있네요 !
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
또한 !
sticky
로 설정해두면height
만큼 상단에 공간을 차지하게 될 수 있습니다 !별도의
margin
이나padding
등의height
를 주지 않아도 되는 장점이 있습니다. 😊