brewman/overlord/src/app/attendance/attendance.component.css

54 lines
655 B
CSS
Raw Normal View History

.right {
display: flex;
justify-content: flex-end;
}
.center {
display: flex;
justify-content: center;
}
.present {
background-color: #228B22;
}
.off-day {
background-color: #87CEFA;
}
.on-leave {
background-color: #CD5C5C;
}
.absent {
background-color: #CD0000;
}
.half-day {
background-color: #98FB98;
}
.double-duty {
background-color: #006400;
}
.paid-leave-availed {
background-color: #EEEE00;
}
.casual-leave-availed {
background-color: #800080;
}
.compensatory-off {
background-color: #F5DEB3;
}
.half-day-pl {
background-color: #FFF68F;
}
.half-day-cl {
background-color: #FF00FF;
}