Todo.css - Krutik

 avatar
unknown
css
4 years ago
1.1 kB
4
Indexable
.todo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.todo-list {
  min-width: 30%;
  list-style: none;
}

.todo {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: black;
  background: white;

  display: flex;
  align-items: center;
  justify-content: space-between;

  transition: all 1s ease;

  margin: 0.5rem;
  border-radius: 5px;
  border-top-left-radius: 0px;
  padding-left: 9px;
}

.filter-todo {
  padding: 1rem;
}

.todo li {
  flex: 1;
}

.todo-item {
  padding: 0rem 0.5rem;
  float: left;
  width: 500px;
}

.bar-tag-container {
  /* height: 200px;
  width: 500px; */
  display: flex;
  flex-direction: column;
}

.tag {
  color: white;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;

  background: #36d1dc;
  padding: 3px;
  width: 80px;

  border-radius: 5px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.other {
  margin: 0;
  display: inline-flex;
  flex-direction: column;
}
Editor is loading...