⚪ Bubble Card - A minimalist card collection for Home Assistant with a nice pop-up touch

Hi, something like this?

Here is the custom styles YAML:

styles: |-
  .bubble-media-player-container {
    background: none;
  }
  ha-card {
    overflow: hidden;
    border-radius: 50px !important;  
  }
  .card-content {
    background: var(--background-color-2,var(--secondary-background-color));
  }
  .card-content::before {
    content: '';
    display: flex;
    width: 100%;
    height: 100%;
    background-image: url(${hass.states[entity]?.attributes.entity_picture_local});
    background-size: cover;
    background-position: 50%;
    filter: blur(20px);
    top: 0;
    position: absolute;
    opacity: 0.5;
  }
9 Likes