task.css 887 Bytes
.card_status{
  position: relative;
  top:-15px;
  left:-20px;
  height:20px;
  width:60px;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
  border-radius: 5px;
}

.card_status.notcheck{
  background-color: aqua;
  color:blue;
}

.card_status.agree{
  background-color: greenyellow;
  color: green;
}
.card_status.dismiss{
  background-color: pink;
  color: red;
}

.card_btn a{
  color:blue;
  margin-right: 10px;
}

.card_btn a.agree{
  color:green;
}

.card_btn a.dismiss{
  color:red;
}

.card_btn{
  float: right;
}

.box-card{
  margin-bottom: 30px;
}

.card_title{
  font-size: 18px;
  font-weight: bold;
}

.card_row{
  margin-top: 20px;
  margin-bottom: 20px;
}

.card_grid{
  height:20px;
  line-height: 20px;
}

.card_grid.center{
  text-align: center;
  border-left: 2px solid black;
  border-right: 2px solid black;
}
.card_grid.right{
  text-align: right;
}