File size: 1,775 Bytes
27867f1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
.schedTable{
background: var(--docked-drawer-background);
width: 95%;
}
.schedIcon{
min-width: 2em;
font-size: 150%;
text-align: center;
display: table-cell;
}
@media not all and (min-width:50em){
.schedIcon{
min-width:1.3em;
}
.schedTable{
width: 99%;
}
}
@media not all and (max-width:60em){
.schedIcon{
min-width:3em;
}
}
.schedTask{
width:90%;
}
.schedTitle{
font-size: 110%;
font-weight: bold;
}
.schedSection{
font-size: 130%;
font-weight: bold;
}
.schedHide{
display: none;
}
.schedShow{
display: block;
}
.schedIconButton{
background: #ffffff61;
width: 2em;
height: 2em;
border-radius: 50%;
padding: 0px;
border: 0px;
margin-left: 1em;
cursor: pointer;
}
td a {
color: inherit;
text-decoration: none;
}
.progress-line, .progress-line:before {
height: 3px;
width: 100%;
margin: 0;
}
.progress-line {
background-color: #878bc7;
display: -webkit-flex;
display: flex;
}
.progress-line:before {
background-color: #ed344a;
content: '';
-webkit-animation: running-progress 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
animation: running-progress 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@-webkit-keyframes running-progress {
0% { margin-left: 0px; margin-right: 100%; }
50% { margin-left: 25%; margin-right: 0%; }
100% { margin-left: 100%; margin-right: 0; }
}
@keyframes running-progress {
0% { margin-left: 0px; margin-right: 100%; }
50% { margin-left: 25%; margin-right: 0%; }
100% { margin-left: 100%; margin-right: 0; }
}
#background-image: linear-gradient(45deg, #ed344a 25%, #857830 25%, #857830 50%, #ed344a 50%, #ed344a 75%, #857830 75%, #857830 100%);
#background-size: 56.57px 56.57px;
|