-
Notifications
You must be signed in to change notification settings - Fork 39
[전유진] sprint1 #29
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
Merged
GANGYIKIM
merged 13 commits into
codeit-bootcamp-frontend:Basic-전유진
from
yuj2n:Basic-전유진-sprint1
Feb 28, 2025
The head ref may contain hidden characters: "Basic-\uC804\uC720\uC9C4-sprint1"
Merged
[전유진] sprint1 #29
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
1403e5c
초기 세팅 확인
yuj2n 0b616bc
nav바 기능 추가
yuj2n 84ddebc
banner 섹션 추가
yuj2n 4157f5d
main 첫 섹션 추가
yuj2n 0df264d
main 섹션 나머지 추가
yuj2n 953bd08
bottom 배너 추가
yuj2n 35847a5
footer 내용 작성
yuj2n ca96622
기본 요구사항 적용
yuj2n 47243dc
반응형을 위한 css 수정 및 그에 따른 html 조정
yuj2n 82d424d
불필요한 css 수정 및 디자인 수정
yuj2n 124513b
favicon 추가
yuj2n 2b69b39
반응형 디자인 css 이동 및 빈 페이지 추가
yuj2n ed17e19
빈 페이지들 추가 및 img css 수정
yuj2n File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| :root { | ||
| /* Primary color */ | ||
| --blue100: #3692FF; | ||
| --blue200: #1967D6; | ||
| --blue300: #1251AA; | ||
|
|
||
| /* Secondary color */ | ||
| --gray900: #111827; | ||
| --gray800: #1f2937; | ||
| --gray700: #374151; | ||
| --gray600: #4b5563; | ||
| --gray500: #6b7280; | ||
| --gray400: #6b7280; | ||
| --gray200: #e5e7eb; | ||
| --gray100: #f3f4f6; | ||
| --gray50: #f9fafb; | ||
|
|
||
| /* Error */ | ||
| --red: #F74747; | ||
|
|
||
| /* inactive */ | ||
| --inactive: #9ca3af; | ||
|
|
||
| /* normal */ | ||
| --gray: #fcfcfc; | ||
| --white: #ffffff; | ||
| --nav: #dfdfdf; | ||
| --banner: #cfe5ff; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| /* 전체 초기화 */ | ||
| * { | ||
| top: 0; | ||
| bottom: 0; | ||
yuj2n marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| margin: 0; | ||
| padding: 0; | ||
| border: 0; | ||
| box-sizing: border-box; | ||
| font-family: "Pretendard Variable", sans-serif; | ||
| font-size: 16px; /* Base font size */ | ||
yuj2n marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
|
|
||
| /* 기본 스타일 초기화 */ | ||
| a { | ||
| text-decoration: none; | ||
| } | ||
|
|
||
| .main-btn, | ||
yuj2n marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| button { | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| .main-btn:hover, | ||
| button:hover { | ||
| background: var(--blue200); | ||
| } | ||
|
|
||
| .main-btn:active, | ||
| button:active { | ||
| background: var(--blue300); | ||
| } | ||
|
|
||
| .main-btn:disabled, | ||
| button:disabled { | ||
| background: var(--inactive); | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.