All i want is just a basic card to show current tempature outside and inside

is there any basic cards that just show the tempature inside my condo and title (ie Indoors)? I love HA but man, all i want to do is just show what the current outside temp is and also what my current temp inside my condo is. atm i am using card-mod and the basic entity card but the latest update to HA wrecked how the formatting looks. this is how it looked previously (if i could just remove that whitespace between the label and temperature, i’d be ok).

any ideas?
here’s my super ugly code for the condo temp:

type: entity
entity: weather.forecast_bloomington
card_mod:
style: |
ha-card {
font-size: 90px !important;
}
.value {
font-size: 50px !important;
font-weight: 400;
}
state_color: true
name: Outdoor (°F)
attribute: temperature
unit: °F
grid_options:
columns: 8
rows: 3

Do you have a temperature device outside ?

well, of course after i posted this i found a way to do this.
using this code:

card_mod:
style: |
ha-card {
font-size: 90px !important;
}
.value {
font-size: 90px !important;
font-weight: 400;
}

update: however… this doesn’t make sense though… its the same code. so weird. i’ll take it as a win i guess?? hehe

i am using an indoor temperature sensor from my hue motion detector. however i think i found the card-mod code to do this!

thank you so much for actually replying too. not sure why the prev i tried this it didn’t work.

1 Like