Larger text

Hi,
have searched around and most answers appear to head into css territory. I was hoping there might be a more simple way.
I have an ice bath next to my sauna. When we are in the ice bath and looking at the clock it is good to see how bloody cold it really is for an extra motivation. Trouble is I can’t find a way to show the sensor for the temp in a size format that for us oldies is readable when more than 1 metre away.
I have a picture showing the relevant sizes.
Can i make the temperature value much large easier than teaching myself css?
Pat

card-mod
details in the main card-mod thread

Perhaps not enough but a markdown card can probably be slightly larger.
Might work for a few years :slight_smile:

<font size=10>{{ states('sensor,ice_bath') }}</font>

Hellis
Thanks. I tried the markdown card and can’t get it any larger than double. Looks like the only way is to go down the CASS rabbit hole.
Pat

Picture elements card can also work.
But they are a pain to set up.

I believe what you will need is a background image and this:

  - entity: sensor.ice_bath
    style:
      left: 45%
      top: 45%
      transform: scale(3,3)

Where scale is the size of the text

Hellis
that worked a treat without going down the css hole.
thanks
Pat

Wally
thanks for that - although I didn’t go into using this to setup the page that i wanted i have subscribed as it is always good to have visible content on HA configuration.
Pat