Advertisement
fredrik_persson_

Bin Card Base

Apr 6th, 2024
657
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.70 KB | None | 0 0
  1. type: custom:button-card
  2. icon: mdi:trash-can-outline
  3. entity: input_boolean.dummy_door
  4. name: |
  5.  [[[
  6.     return states["sensor.garbage_collection"].state + ' dagar till soptämning'
  7.   ]]]
  8. tap_action:
  9.   action: toggle
  10. styles:
  11.   grid:
  12.     - grid-template-areas: '"i n"'
  13.     - grid-template-columns: min-content max-content
  14.     - column-gap: 1rem
  15.   card:
  16.     - padding: 1rem
  17.   icon:
  18.     - color: grey
  19.     - width: 4rem
  20.   name:
  21.     - justify-self: start
  22. state:
  23.   - value: 'on'
  24.     name: Take out the trash!
  25.     styles:
  26.       icon:
  27.         - color: red
  28.         - animation: flash 1s infinite alternate
  29. extra_styles: |
  30.  @keyframes flash {
  31.   0% { color: grey; }
  32.   100% { color: red; }
  33.   }
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement