-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbottom-menu-bar
174 lines (174 loc) · 4.16 KB
/
bottom-menu-bar
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
type: custom:mod-card
card_mod:
style: |
/* Styles for mobile devices */
@media (max-width: 767px) {
ha-card {
z-index: 1;
position: fixed;
bottom: 0px;
left: 0px;
width: 100%;
height: 80px;
backdrop-filter: blur(120px);
-webkit-backdrop-filter: blur(150px);
background: rgba(15, 1, 31, .8);
opacity: 1;
border-radius: 0px;
padding: 0px;
padding-left: 5px;
padding-right: 5px;
border-top: .5px solid rgba(100, 100, 100, 0.2);
box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.3);
}
}
/* Styles for desktop devices */
@media (min-width: 766px) {
ha-card {
z-index: -1;
position: fixed;
bottom: 0px;
left: 0px;
width: 20%;
height: 75px;
background: RGBA(0,0,0,0.50);
opacity: 1;
border-radius: 0px;
padding: 5px;
}
}
card:
type: grid
square: false
columns: 5
style:
z-index: 10
cards:
- type: custom:button-card
icon: fas:house
name: Home
tap_action:
action: navigate
navigation_path: /lovelace/home
styles:
icon:
- color: white
- width: 24px
- height: 24px
img_cell:
- justify-content: center
- height: 100%
card:
- background: none
- padding: 7px
- opacity: 1
- width: 74px
name:
- font-size: 10px
- align-self: center
- opacity: 1
- font-weight: 400
- padding-top: 6px
- type: custom:button-card
icon: fapro:circle-sort-solid
name: Climate
tap_action:
action: navigate
navigation_path: /lovelace/climate
styles:
icon:
- color: white
- height: 24px
- width: 24px
- overflow: visible
img_cell:
- justify-content: center
- height: 100%
card:
- background: none
- padding: 7px
- opacity: 0.5
- width: 74px
name:
- font-size: 10px
- align-self: center
- font-weight: 300
- padding-top: 6px
- type: custom:button-card
icon: fapro:tv-retro-solid
name: Media
tap_action:
action: navigate
navigation_path: /lovelace/Media
styles:
icon:
- color: white
- width: 24px
- height: 24px
img_cell:
- display: flex
- align-items: flex-end
- justify-content: center
card:
- background: none
- padding: 7px
- opacity: 0.5
- height: null
- width: 74px
name:
- font-size: 10px
- align-self: center
- font-weight: 300
- padding-top: 6px
- type: custom:button-card
icon: fapro:lightbulb-on-solid
name: Lights
tap_action:
action: navigate
navigation_path: /lovelace/lights/
styles:
icon:
- color: white
- width: 24px
- height: 24px
img_cell:
- display: flex
- align-items: flex-end
- justify-content: center
card:
- background: none
- padding: 7px
- opacity: 0.5
- height: null
- width: 74px
name:
- font-size: 10px
- align-self: center
- font-weight: 300
- padding-top: 6px
- type: custom:button-card
icon: fapro:shield-check-solid
name: Security
tap_action:
action: navigate
navigation_path: "#security"
styles:
icon:
- color: white
- width: 24px
- height: 24px
img_cell:
- display: flex
- align-items: flex-end
- justify-content: center
card:
- background: none
- padding: 7px
- opacity: 0.5
- height: null
- width: 74px
name:
- font-size: 10px
- align-self: center
- font-weight: 300
- padding-top: 6px