Select Git revision
GarbageContainerScheduleTile.html
GarbageContainerScheduleTile.html 826 B
<style>
.garbageContainerScheduleTile {
background-color: #2F2F2F;
font-size: 3vmin;
border-radius: 1vh;
font-weight: bold;
flex-direction: row;
}
.garbageContainerScheduleTile .icon {
font-size: 10vmin;
}
.garbageContainerScheduleTile .content {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-evenly;
width: 85%;
height: 85%;
}
.garbageContainerScheduleTile .icon {
width: 12%;
height: auto;
}
</style>
<div class="garbageContainerScheduleTile">
<div class="content">
<img src="../../static/images/{{ data['iconFileName'] }}" class="icon"/>
{{ data['nextEventDate'] }} - {{ data['remainingDays'] }} Tag(e)
</div>
</div>