VICE / Client / src / app / FE-View / home / home.component.css
home.component.css
Raw
.grid-container {

  margin: 20px 20px 0 20px;
}

.table {
  text-align: left;
  text-indent: 20px;
}

.dashboard-card {
  position: absolute;
  top: 2%;
  left: 2%;
  right: 2%;
  bottom: 30%;
  table-layout: none;
}

.dashboard-card-content{
  margin-top: 2%;
  margin-bottom: 2%;
  text-align: center;
}

#Done {
  margin-right: 10px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  background-color: #56f000;
}

#In-Progress {
  margin-right: 10px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  background-color: #2dccff;
}

#Stopped {
  margin-right: 10px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  background-color: #ff3838;
}

#Queued {
  margin-right: 10px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  background-color: #fce83a;
}