Skip to content

Commit

Permalink
restyle pop-up form
Browse files Browse the repository at this point in the history
  • Loading branch information
DiksonIvySon committed Sep 12, 2023
1 parent dd5eeca commit 4d565f6
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion ToDoList/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ main .pop-up .pop-up-content {
transform: translateY(-10px);
}
100% {
transform: translateY( -70px);
transform: translateY(-50%);
}
}

Expand Down Expand Up @@ -854,6 +854,28 @@ main .forms-container input {
width: 80%;
}

#editItemForm textarea {
width: 100%;
min-height: 70px;
border-radius: 5px;
margin: 0px;
}

#editItemForm input {
width: 100%;
padding: 4px;
border-radius: 5px;
}

#editItemForm div {
margin: 5px;
}

#editItemForm button {
border-radius: 10px;
}

#editItemForm button:hover {
background-color: #52D6F4;
cursor: pointer;
}

0 comments on commit 4d565f6

Please sign in to comment.