type: custom:button-card
section_mode: true
variables:
time: sensor.time
styles:
grid:
- grid-template-areas: '"a" "b" "c"'
- grid-template-columns: 100%
- grid-template-rows: 1fr auto 1fr
custom_fields:
a:
- font-size: 3.2em
- font-weight: bold
- letter-spacing: 1px
b:
- justify-self: center
- align-self: center
- width: 20%
- height: 4px
- background-color: red
- border-radius: 2px
- margin: 2px 0
c:
- font-size: 3.2em
- font-weight: bold
- letter-spacing: 1px
custom_fields:
a: |
[[[
var time = states[variables.time].state;
return time.split(':')[0];
]]]
b: |
[[[
return '';
]]]
c: |
[[[
var time = states[variables.time].state;
return time.split(':')[1];
]]]
grid_options:
columns: 3
rows: 2
|