Add
- Hit the gym
- Pay bills
- Clean the Car
- Buy Groceries
- Read a book
- Organize Home
To Do List
Add
- Hit the gym
- Pay bills
- Clean the Car
- Buy Groceries
- Read a book
- Organize Home
body {
margin: 0;
min-width: 250px;
background-image:linear-gradient(to left,khaki,darkslategray);
height:100%;
}
.content{
margin:30px 0px 0px 0px;
border-radius: 20px;
box-shadow: 0px 0px 50px black;
}
ul {
margin: 0;
padding: 0;
}
ul li {
list-style-type:none;
cursor: pointer;
position: relative;
padding: 12px 8px 12px 40px;
background: #eee;
font-size: 18px;
transition: 0.2s;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
ul li:nth-child(odd) {
background: #f9f9f9;
}
ul li:hover {
background: #ddd;
}
ul li.checked {
background: powderblue;
color:navy;
text-decoration: line-through;
}
ul li.checked::before {
content: '';
position: absolute;
border-color: #fff;
border-style: solid;
border-width: 0 2px 2px 0;
top: 10px;
left: 16px;
transform: rotate(45deg);
height: 15px;
width: 7px;
}
.close {
position: absolute;
right: 0;
top: 0;
padding: 12px 16px 12px 16px
}
.close:hover {
background-color: #f44336;
color: white;
}
.header {
background-image:linear-gradient(to bottom right,#404cb1,#E91E63,#00b9ff);
padding: 30px 40px;
color: white;
text-siz:80px;
text-align: center;
}
.header:after {
content: "";
display: table;
clear: both;
}
input {
border: none;
border-radius: 30px;
width: 70%;
padding: 10px;
float: left;
font-size: 16px;
box-sizing: border-box;
}
h2{
color:gold;
text-align:center;
font-size:50px;
}
.addBtn {
padding: 10px;
box-sizing: border-box;
border-radius: 30px;
position:relative;
right:-165px;
width: 15%;
background-color:black;
color:aqua;
float: left;
text-align: center;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
}
.addBtn:hover {
background-color:black;
color:snow;
font-size:105%;
}