fredrik_persson_

Vacuum Card

Apr 25th, 2023 (edited)
477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.95 KB | None | 0 0
  1. type: custom:button-card
  2. entity: group.dummy_scene_group
  3. name: RoboRock
  4. label: First floor
  5. icon: mdi:robot-vacuum-variant
  6. show_name: true
  7. show_icon: true
  8. show_label: true
  9. show_state: false
  10. state:
  11.   - value: 'on'
  12.     styles:
  13.       icon:
  14.         - color: '#39bb4f'
  15.   - value: charging
  16.     styles:
  17.       icon:
  18.         - color: '#e51261'
  19.   - value: 'off'
  20.     styles:
  21.       icon:
  22.         - color: '#55555550'
  23. styles:
  24.   grid:
  25.     - grid-template-areas: |
  26.        "i . img"
  27.         "n n ."
  28.         "l l ."
  29.         "item1 item2 item3"
  30.     - grid-template-rows: 1fr .5fr .5fr 1fr
  31.     - grid-template-columns: 1fr 1fr 1fr
  32.     - column-gap: 8px
  33.     - row-gap: 8px
  34.   card:
  35.     - aspect-ratio: 1
  36.     - border-radius: 20px
  37.     - box-shadow: none
  38.     - padding: 1.5rem
  39.     - background: white
  40.   name:
  41.     - font-size: 48px
  42.     - font-weight: bold
  43.     - justify-self: start
  44.     - align-self: end
  45.     - color: black
  46.     - z-index: 2
  47.   label:
  48.     - font-size: 36px
  49.     - justify-self: start
  50.     - align-self: start
  51.     - color: grey
  52.     - z-index: 2
  53.   img_cell:
  54.     - justify-self: start
  55.     - justify-content: start
  56.     - border-radius: 500px
  57.     - background-color: none
  58.     - z-index: 2
  59.   icon:
  60.     - color: '#e51261'
  61.     - width: 50%
  62.     - height: 50%
  63.   custom_fields:
  64.     img:
  65.       - border: none
  66.       - box-shadow: none
  67.       - position: absolute
  68.       - width: 60%
  69.       - right: 1rem
  70.       - top: 1rem
  71. custom_fields:
  72.   item1:
  73.     card:
  74.       type: custom:button-card
  75.       entity: group.dummy_scene_group
  76.       icon: mdi:motion-play-outline
  77.       show_name: false
  78.       show_icon: true
  79.       show_label: true
  80.       show_state: false
  81.       state: &ref_0
  82.         - value: 'on'
  83.           styles:
  84.             icon:
  85.               - color: '#39bb4f'
  86.         - value: 'off'
  87.           styles:
  88.             icon:
  89.               - color: '#55555550'
  90.       styles: &ref_1
  91.         card:
  92.           - border-radius: 100px
  93.           - aspect-ratio: 1
  94.           - background: white
  95.           - box-shadow: 0px 4px 6px 0px rgba(0,0,0,0.2)
  96.         icon:
  97.           - color: '#39bb4f'
  98.   item2:
  99.     card:
  100.       type: custom:button-card
  101.       entity: group.dummy_scene_group
  102.       icon: mdi:motion-pause-outline
  103.       show_name: false
  104.       show_icon: true
  105.       show_label: true
  106.       show_state: false
  107.       state: *ref_0
  108.       styles: *ref_1
  109.   item3:
  110.     card:
  111.       type: custom:button-card
  112.       entity: group.dummy_scene_group
  113.       icon: mdi:gas-station-outline
  114.       show_name: false
  115.       show_icon: true
  116.       show_label: true
  117.       show_state: false
  118.       state: *ref_0
  119.       styles: *ref_1
  120.   img:
  121.     card:
  122.       type: picture
  123.       card_mod:
  124.         style: |
  125.          ha-card {
  126.             box-shadow: none;
  127.           }
  128.       image: >-
  129.         https://www.tradeinn.com/f/13758/137584654/roborock-dammsugare-robot-s6-pure.jpg
  130.       tap_action:
  131.         action: none
  132.       hold_action:
  133.         action: none
  134.  
Advertisement
Add Comment
Please, Sign In to add comment