-
Notifications
You must be signed in to change notification settings - Fork 10
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
[1주차] 조유담 미션 제출합니다 #11
Open
youdame
wants to merge
13
commits into
CEOS-Developers:master
Choose a base branch
from
youdame:youdame
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
5a64275
style : reset.css 파일 추가 및 프리티어 설정
youdame dccc8fa
Style : 폴더 구조 변경
youdame 4323a11
Feat : 날짜 보여주기 기능 구현 및 시맨틱 태그 수정
youdame 9385d1a
Feat: 할 일 추가, 이동, 삭제 구현
youdame 14b669a
Feat : 개수, 유저 이름 보여주기 기능 구현
youdame 3877e78
Refactor : 코드 리팩토링 및 og 태그 삽입
youdame 684c1c4
feat : 로컬스토리지 기능 구현
youdame 2adc42f
Fix : 로컬스토리지 저장 기능 오류 해결 및 불필요한 og 제거
youdame cbfe627
Refactor : 불필요한 코드 제거
youdame 5d2c623
Refactor : 코드 리팩토링
youdame 9a94450
Refactor : 주석 추가 및 불필요한 코드 삭제
youdame 53ebfba
Feat : 드래그앤드랍 기능 구현
youdame 386a861
Docs : 리드미 수정
youdame 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 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
This file contains 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
This file contains 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 |
---|---|---|
|
@@ -8,9 +8,17 @@ body { | |
|
||
header { | ||
display: flex; | ||
font-size: 2rem; | ||
flex-direction: column; | ||
gap: 1rem; | ||
} | ||
|
||
main { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 2rem; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
padding: 3rem 0; | ||
|
@@ -19,26 +27,70 @@ header { | |
align-items: center; | ||
flex-direction: column; | ||
} | ||
.input-wrapper { | ||
display: flex; | ||
justify-content: space-between; | ||
gap: 2rem; | ||
} | ||
|
||
.input-form { | ||
display: flex; | ||
width: 100%; | ||
padding: 1.2rem; | ||
border: 0.1rem solid #6d6afe; | ||
gap: 2rem; | ||
border-radius: 1rem; | ||
} | ||
|
||
.todo-list { | ||
.list-container { | ||
display: flex; | ||
width: 100%; | ||
justify-content: space-between; | ||
} | ||
|
||
.input { | ||
width: 40rem; | ||
height: 2rem; | ||
height: 2.5rem; | ||
padding: 1rem; | ||
font-size: 1.5rem; | ||
} | ||
|
||
.input::-webkit-input-placeholder { | ||
font-size: 1.5rem; | ||
} | ||
|
||
.input-button { | ||
font-size: 2rem; | ||
} | ||
|
||
.list { | ||
display: flex; | ||
width: 20rem; | ||
height: 40rem; | ||
padding: 2rem; | ||
border: 0.1rem solid #6d6afe; | ||
gap: 1rem; | ||
align-items: center; | ||
flex-direction: column; | ||
border-radius: 2rem; | ||
overflow: auto; | ||
} | ||
|
||
// 스크롤바 css가 안 먹는 이유를 모르겠음.. | ||
/* 스크롤바 막대 */ | ||
Comment on lines
+95
to
+96
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. 스크롤바 커스텀 코드 잘 써주신 것 같은데! 왜 안되었을까요?😥 한 가지 제안점으로는 ul보다 한 단계 상위 태그에 설정을 먹여보면 어떨까 싶은 생각이 듭니다!! |
||
.list::-webkit-scrollbar-thumb { | ||
background-color: black; /*스크롤바의 색상*/ | ||
} | ||
|
||
.list::-webkit-scrollbar-track { | ||
background-color: yellow; /*스크롤바 트랙 색상*/ | ||
} | ||
|
||
.label { | ||
font-size: 2rem; | ||
} | ||
|
||
li { | ||
display: flex; | ||
font-size: 2rem; | ||
gap: 1rem; | ||
} |
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.
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.
클래스 속성을 요소에 적용할 때 classList.add를 사용해서 한 번에 여러가지 스타일 속성을 적용하신게 정말 효율적인 것 같아요!!
앞으로 저도 classList.add 많이 활용해야겠네요!