Skip to content
Snippets Groups Projects
Select Git revision
  • 061caad816fb7fc0ca420145ea38bb5679d0bccd
  • master default
  • v1.34.0
  • v1.33.0
  • v1.32.1
  • v1.32.0
  • v1.31.2
  • v1.31.1
  • v1.31.0
  • v1.30.0
  • v1.29.0
  • v1.28.0
  • v1.27.0
  • v1.26.0
  • v1.25.0
  • v1.24.0
  • v1.23.1
  • v1.23.0
  • v1.22.0
  • v1.20.0
  • v1.19.1
  • v1.19.0
22 results

GarbageContainerScheduleTile.html

Blame
  • 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>