<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* *************To Do List************** */
.todo-container {
  background-color: #1f8c8f;
  margin: 20px auto 0px;
}

.add-task {
  position: relative;
  background-color: #71cdcd;
  padding: 15px 20px;
}

.add-task input {
  width: calc(100% - 40px);
  padding: 10px;
   font-size: 17px;
}
.add-task .plus {
  position: absolute;
  width: 43px;
  height: 43px;
  line-height: 43px;
  background-color: #0b8b8b;
  border-radius: 50%;
  right: 15px;
  text-align: center;
  font-size: 40px;
  color: #f1f1f1;
  cursor: pointer;
  transition: 0.4s;
}

.add-task .plus:hover {
  transform: rotate(90deg);
}

.tasks-content {
  padding: 15px 20px;
}

.tasks-content .no-tasks-message {
  font-size: 16px;
}

.tasks-content &gt; span {
  display: block;
  background-color: #0b393b;
  padding: 15px;
  color: #fff;
  border-radius: 10px;
}
.task-stats {
  width:100%;
  margin: 0px auto;
  background-color: #ddd;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  border: 1px solid cadetblue;
}
.task-stats .tasks-count {
  background-color: green;
  padding: 6px 10px;
  border-radius: 10px;
}
/* ***************To Do List***************** */
</pre></body></html>