VICE / Client / src / app / manager / manager.component.css
manager.component.css
Raw
.grid-container{
    margin: 20px;
  }

.dashboard-card{
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    table-layout: none;
  }

.navbar-text{
  margin-left: auto;
}

.navbar-text a{
  color: white;
  text-decoration: none;
}

#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;
}