Advertisement
tom_el_camino

Untitled

Sep 1st, 2024
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. type: custom:button-card
  2. icon: none
  3. name: Vol
  4. show_state: false
  5. layout: vertical
  6. styles:
  7. card:
  8. - width: 90px
  9. - height: 188px
  10. - margin-left: 5px
  11. - background-color: none
  12. - box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2)
  13. - font-family: Tilt Neon
  14. - border-radius: 16px
  15. grid:
  16. - grid-template-areas: '"volume_up" "n" "volume_down"'
  17. - grid-template-columns: 1fr
  18. - grid-template-rows: null
  19. name:
  20. - height: 40px
  21. - margin-top: '-10px'
  22. custom_fields:
  23. volume_up:
  24. card:
  25. type: custom:button-card
  26. entity: script.lr_volume_up
  27. icon: mdi:volume-high
  28. show_icon: true
  29. show_name: false
  30. tap_action:
  31. action: call-service
  32. service: script.lr_volume_up
  33. styles:
  34. card:
  35. - width: 90px
  36. - height: 89px
  37. - background-color: none
  38. - box-shadow: none
  39. - position: relative
  40. - top: '-15px'
  41. volume_down:
  42. card:
  43. type: custom:button-card
  44. entity: script.lr_volume_down
  45. icon: mdi:volume-medium
  46. show_icon: true
  47. show_name: false
  48. tap_action:
  49. action: call-service
  50. service: script.lr_volume_down
  51. styles:
  52. card:
  53. - width: 90px
  54. - height: 89px
  55. - background-color: none
  56. - box-shadow: none
  57. - position: relative
  58. - bottom: 15px
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement