Skip to content
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

changed some display descriptions #5

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ <h1 class="mb-4">Todo List</h1>

<ul class="list-group todos mx-auto text-light">
<li class="list-group-item d-flex justify-content-between align-items-center">
<span>Buy Milk</span>
<span>Buy Softdrinks</span>
<i class="far fa-trash-alt delete"></i>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
<span>Sell cake</span>
<span>Sell Fruits</span>
<i class="far fa-trash-alt delete"></i>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
<span>Call John</span>
<i class="far fa-trash-alt delete"></i>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
<span>Buy Pizza</span>
<span>Buy Pizza </span>
<i class="far fa-trash-alt delete"></i>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Expand All @@ -47,7 +47,7 @@ <h1 class="mb-4">Todo List</h1>
<i class="far fa-trash-alt delete"></i>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
<span>Watch TV</span>
<span>Watch TV or Films</span>
<i class="far fa-trash-alt delete"></i>
</li>
</ul>
Expand Down
8 changes: 4 additions & 4 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
body{
background: #3f6975;
background: #F78181;
}
.container{
max-width: 400px;
}
input[type=text],
input[type=text]:focus{
color: #fff;
color: #DF013A;
border: none;
background: rgba(0, 0,0, 0.2);
max-width: 400px;
}
.todos li{
background: #408b8b;
background: #A9BCF5;
}
.delete{
cursor: pointer;
}
.filtered{
display: none !important;
}
}