| 1 |
#fixed-bottom-menu { |
| 2 |
position: fixed; |
| 3 |
left: 0; |
| 4 |
bottom: 0; |
| 5 |
width: 100%; |
| 6 |
line-height: 2rem; |
| 7 |
margin: 0; |
| 8 |
padding: 0; |
| 9 |
z-index: 30; |
| 10 |
} |
| 11 |
.fixed-bottom-menu-container { |
| 12 |
display: -webkit-box; |
| 13 |
display: -webkit-flex; |
| 14 |
display: -moz-box; |
| 15 |
display: -ms-flexbox; |
| 16 |
display: flex; |
| 17 |
flex-diretion: row; |
| 18 |
-webkit-flex-wrap: nowrap; |
| 19 |
-ms-flex-wrap: nowrap; |
| 20 |
flex-wrap: nowrap; |
| 21 |
-webkit-box-align: stretch; |
| 22 |
-webkit-align-items: stretch; |
| 23 |
-moz-box-align: stretch; |
| 24 |
-ms-flex-align: stretch; |
| 25 |
align-items: stretch; |
| 26 |
} |
| 27 |
.fixed-bottom-menu-item { |
| 28 |
-webkit-flex-basis: 20%; |
| 29 |
-ms-flex-preferred-size: 20%; |
| 30 |
flex-basis: 20%; |
| 31 |
text-align: center; |
| 32 |
-webkit-align-self: baseline; |
| 33 |
-ms-flex-item-align: baseline; |
| 34 |
align-self: baseline; |
| 35 |
} |
| 36 |
.fixed-bottom-menu-item a { |
| 37 |
display: block; |
| 38 |
padding-top: 0.15rem; |
| 39 |
padding-bottom: 0.15rem; |
| 40 |
line-height: 1rem; |
| 41 |
text-decoration: none; |
| 42 |
} |
| 43 |
|