142 lines
1.8 KiB
CSS
142 lines
1.8 KiB
CSS
.container {
|
|
margin: 20px auto;
|
|
width: 70%;
|
|
display: flex;
|
|
}
|
|
|
|
.spacer {
|
|
margin-bottom: 2.5%;
|
|
}
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
.container {
|
|
width: 100%;
|
|
margin: 20px 10px;
|
|
}
|
|
}
|
|
|
|
.today-worked-info {
|
|
margin-left: 20px;
|
|
background-color: #e1e1e1;
|
|
padding-right: 5px;
|
|
padding-left: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.red-card {
|
|
background-color: #e54c3c;
|
|
color: white;
|
|
}
|
|
|
|
.green-card {
|
|
background-color: #00bc8c;
|
|
color: white;
|
|
}
|
|
|
|
.main-container {
|
|
width: 45%;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.btn-link {
|
|
text-decoration: underline;
|
|
color: white;
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.dashboard-heading {
|
|
margin-top: 20px;
|
|
font-size: 2.5em;
|
|
}
|
|
|
|
.today-worked-info {
|
|
font-size: .8em;
|
|
}
|
|
|
|
|
|
.lightBlueBtn {
|
|
background-color: #3498db;
|
|
color: white;
|
|
}
|
|
|
|
.grayBtn {
|
|
background-color: #444444;
|
|
color: white;
|
|
border-radius: 0;
|
|
}
|
|
|
|
::ng-deep .mat-mdc-list-base {
|
|
--mdc-list-list-item-label-text-color: white
|
|
}
|
|
|
|
::ng-deep .mat-mdc-list-base .taskgroup-btn, ::ng-deep .mat-mdc-list-base .taskgroup-last-btn {
|
|
--mdc-list-list-item-label-text-color: black
|
|
}
|
|
|
|
.taskgroup-overview {
|
|
width: 25%;
|
|
float: right;
|
|
}
|
|
|
|
.spacer {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.taskgroup-btn {
|
|
background-color: #f3f3f3;
|
|
border: 0 solid #000000;
|
|
border-bottom-width: 1px;
|
|
}
|
|
|
|
.taskgroup-last-btn {
|
|
background-color: #f3f3f3;
|
|
}
|
|
|
|
.link-no-deco {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
.link-no-deco:hover{
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.gray-text {
|
|
color: #6e6e6e;
|
|
}
|
|
|
|
.yellowBtn {
|
|
background-color: #f39c12;
|
|
color: white;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.primaryBtn {
|
|
border-radius: 0;
|
|
}
|
|
|
|
|
|
::ng-deep .mat-mdc-card-header-text {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.schedule-del-btn {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.left-actions {
|
|
float: left;
|
|
}
|
|
|
|
.right-actions {
|
|
float: right;
|
|
}
|
|
|
|
.greenBtn {
|
|
background-color: #00bc8c;
|
|
color: white;
|
|
border-radius: 0;
|
|
}
|