Skip to content

Solution: Tam Tran y Enrique Hidalgo #18

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

Open
wants to merge 30 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
ff5486e
Modules Created
E-Hidalgo Sep 21, 2021
eca9f8e
Started Watching Sass and OK
E-Hidalgo Sep 21, 2021
e196d15
Added styles and new components
E-Hidalgo Sep 21, 2021
6065c2f
Testing some styles
E-Hidalgo Sep 21, 2021
f790768
Tam is coming to the game
E-Hidalgo Sep 22, 2021
dae4633
tam
tamtran2885 Sep 22, 2021
f40607c
fighting with git
E-Hidalgo Sep 22, 2021
678122f
Add Task Done
E-Hidalgo Sep 22, 2021
4d1d308
fighting with delete button
E-Hidalgo Sep 22, 2021
696b055
More fighting
E-Hidalgo Sep 22, 2021
8f170d1
...
tamtran2885 Sep 22, 2021
caf4bd0
Eureka
E-Hidalgo Sep 22, 2021
f40f348
add taskfooter
tamtran2885 Sep 23, 2021
1d40fa0
add taskfooter
tamtran2885 Sep 23, 2021
b1ff7a3
Merge from Tam
E-Hidalgo Sep 23, 2021
8420a70
fix json error
tamtran2885 Sep 23, 2021
db73c9d
fixed Merge problems
E-Hidalgo Sep 23, 2021
b57f681
Responsive Fixed
E-Hidalgo Sep 23, 2021
0fb76f8
add delete completed tasks
tamtran2885 Sep 23, 2021
52b691e
Merge branch 'tam' of https://github.com/E-Hidalgo/reactjs-todo-list …
tamtran2885 Sep 23, 2021
32b4145
add count of active item
tamtran2885 Sep 23, 2021
0390265
...
tamtran2885 Sep 23, 2021
43342ec
edit task
tamtran2885 Sep 24, 2021
038149d
add more info to readme
tamtran2885 Sep 24, 2021
b3cfb81
Merge branch 'tam' into test
tamtran2885 Sep 24, 2021
7b5d6f6
add local storage, change theme, and input validation
tamtran2885 Sep 27, 2021
9351645
fix edit view
tamtran2885 Sep 27, 2021
476903b
fix edit
tamtran2885 Sep 27, 2021
071afeb
move task footer
tamtran2885 Sep 28, 2021
ba4ef34
Merge branch 'main' into main
E-Hidalgo Sep 28, 2021
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
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ module.exports = {
"plugin:jsx-a11y/recommended",
"prettier",
"plugin:cypress/recommended",
"plugin:react/recommended",
],
parser: "@babel/eslint-parser",
parserOptions: {
Expand Down
1 change: 1 addition & 0 deletions .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -377,3 +377,5 @@ Thanks goes to these wonderful people
This project follows the
[all-contributors](https://github.com/all-contributors/all-contributors)
specification. Contributions of any kind welcome!

- Repo: https://github.com/E-Hidalgo/reactjs-todo-list
10 changes: 10 additions & 0 deletions css/App.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.query {
width: 100%;
}

@media (max-width: 560px) {
.query {
max-width: 90%;
margin: 0 auto;
}
}/*# sourceMappingURL=App.css.map */
1 change: 1 addition & 0 deletions css/App.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions css/EditButton.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.editButton {
border: none;
background: none;
font-size: 1rem;
color: grey;
padding: 0;
}

.editButton:hover {
color: teal;
}/*# sourceMappingURL=EditButton.module.css.map */
1 change: 1 addition & 0 deletions css/EditButton.module.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions css/FormToDo.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
@import url("https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&display=swap");
.form {
margin-bottom: 20px;
}
.form input[type=text] {
border: none;
height: 66px;
width: 100%;
padding: 15px;
border-radius: 5px;
}
.form input[type=text]:focus {
outline: none;
box-shadow: 1px 0px 5px #25e40c;
}/*# sourceMappingURL=FormToDo.module.css.map */
1 change: 1 addition & 0 deletions css/FormToDo.module.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions css/RemoveButton.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.removeButton {
padding: 0;
border: none;
background: none;
font-size: 1rem;
color: grey;
}

.removeButton:hover {
color: teal;
}/*# sourceMappingURL=RemoveButton.module.css.map */
1 change: 1 addition & 0 deletions css/RemoveButton.module.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions css/Task.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css");
.task {
list-style: none;
display: flex;
justify-content: space-between;
border-bottom: 1px solid rgba(80, 77, 77, 0.63);
padding: 5px 20px;
}
.task .taskControllers {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}/*# sourceMappingURL=Task.module.css.map */
1 change: 1 addition & 0 deletions css/Task.module.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions css/TaskFooter.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
.taskFooter {
margin: 0;
padding: 0.5rem;
background-color: white;
border-radius: 5px;
width: 100%;
height: auto;
display: flex;
font-size: 1rem;
display: flex;
list-style-type: none;
justify-content: space-between;
}

.taskFooter button {
border: none;
}/*# sourceMappingURL=TaskFooter.module.css.map */
1 change: 1 addition & 0 deletions css/TaskFooter.module.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions css/TaskList.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.taskList {
background-color: white;
}/*# sourceMappingURL=TaskList.css.map */
1 change: 1 addition & 0 deletions css/TaskList.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions css/TaskList.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.taskList {
list-style: none;
margin: 0;
padding: 0;
background-color: white;
border-radius: 5px;
width: 100%;
height: auto;
}

@media (max-width: 560px) {
.taskList {
width: 100%;
}
}/*# sourceMappingURL=TaskList.module.css.map */
1 change: 1 addition & 0 deletions css/TaskList.module.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions css/Title.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.Title {
margin-top: 60px;
color: white;
}/*# sourceMappingURL=Title.module.css.map */
1 change: 1 addition & 0 deletions css/Title.module.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions css/ToDo.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.listContainer {
border-radius: 10px;
width: 500px;
}

@media (max-width: 560px) {
.listContainer {
width: 100%;
}
}/*# sourceMappingURL=ToDo.module.css.map */
1 change: 1 addition & 0 deletions css/ToDo.module.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions css/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
@import url("https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
display: flex;
justify-content: center;
background-image: url("https://cdn.pixabay.com/photo/2017/03/19/12/44/banner-2156399_960_720.jpg");
background-repeat: no-repeat;
background-size: cover;
background-color: #213F5D;
font-family: "Open Sans Condensed", sans-serif;
font-size: 1.5rem;
color: rgba(37, 37, 37, 0.808);
margin: 0 auto;
}

.root {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
}

@media (max-width: 560px) {
.root {
width: 100%;
}
}/*# sourceMappingURL=index.css.map */
1 change: 1 addition & 0 deletions css/index.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading