Advertisement
fablav

backlight on off su custom button card

Feb 19th, 2024
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.51 KB | Software | 0 0
  1.    state:
  2.       - value: 'off'
  3.         styles:
  4.           name:
  5.             - color: var(--button-card-light-color)
  6.           label:
  7.             - color: var(--button-card-light-color)
  8.           state:
  9.             - color: var(--button-card-light-color)
  10.           card:
  11.             - '-webkit-box-shadow': 0 0 0.95rem 0.2rem var(--button-card-light-color)
  12.             - box-shadow: 0 0 0.95rem 0.2rem var(--button-card-light-color)
  13.             - transition: all 2s ease-out
  14.       - value: 'on'
  15.         styles:
  16.           card:
  17.             - '-webkit-box-shadow': 0 0 0.95rem 0.2rem var(--button-card-light-color)
  18.             - box-shadow: 0 0 0.95rem 0.2rem var(--button-card-light-color)
  19.             - transition: all 2s ease
  20.           icon:
  21.             - filter: drop-shadow(0 0 12px var(--button-card-light-color))
  22.     styles:
  23.       card:
  24.         - height: 100px
  25.         - '--mdc-ripple-color': rgb(204,255,91)
  26.         - '--mdc-ripple-press-opacity': 0.5
  27.       img_cell:
  28.         - justify-self: end
  29.         - height: 40px
  30.         - width: 70px
  31.       name:
  32.         - justify-self: start
  33.         - padding-left: 8px
  34.         - font-size: 13px
  35.         - font-weight: 500
  36.         - padding-top: 4px
  37.       label:
  38.         - justify-self: start
  39.         - padding-left: 8px
  40.         - font-size: 16px
  41.         - font-weight: 400
  42.         - padding-bottom: 4px
  43.       state:
  44.         - justify-self: start
  45.         - padding-left: 8px
  46.         - font-size: 16px
  47.         - font-weight: 400
  48.         - padding-bottom: 4px
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement