| 1 |
/** |
| 2 |
* Fixed Bottom Menu |
| 3 |
* |
| 4 |
* @package Fixed Bottom Menu |
| 5 |
* @subpackage fixedbottommenu.css |
| 6 |
/* Copyright (c) 2019- Katsushi Kawamori (email : dodesyoswift312@gmail.com) |
| 7 |
This program is free software; you can redistribute it and/or modify |
| 8 |
it under the terms of the GNU General Public License as published by |
| 9 |
the Free Software Foundation; version 2 of the License. |
| 10 |
|
| 11 |
This program is distributed in the hope that it will be useful, |
| 12 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 |
GNU General Public License for more details. |
| 15 |
|
| 16 |
You should have received a copy of the GNU General Public License |
| 17 |
along with this program; if not, write to the Free Software |
| 18 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 |
*/ |
| 20 |
|
| 21 |
#fixed-bottom-menu { |
| 22 |
position: fixed; |
| 23 |
left: 0; |
| 24 |
bottom: 0; |
| 25 |
width: 100%; |
| 26 |
margin: 0; |
| 27 |
padding: 0; |
| 28 |
} |
| 29 |
.fixed-bottom-menu-container { |
| 30 |
display: -webkit-box; |
| 31 |
display: -webkit-flex; |
| 32 |
display: -moz-box; |
| 33 |
display: -ms-flexbox; |
| 34 |
display: flex; |
| 35 |
flex-diretion: row; |
| 36 |
-webkit-flex-wrap: nowrap; |
| 37 |
-ms-flex-wrap: nowrap; |
| 38 |
flex-wrap: nowrap; |
| 39 |
-webkit-box-align: stretch; |
| 40 |
-webkit-align-items: stretch; |
| 41 |
-moz-box-align: stretch; |
| 42 |
-ms-flex-align: stretch; |
| 43 |
align-items: stretch; |
| 44 |
} |
| 45 |
.fixed-bottom-menu-item { |
| 46 |
text-align: center; |
| 47 |
-webkit-align-self: baseline; |
| 48 |
-ms-flex-item-align: baseline; |
| 49 |
align-self: baseline; |
| 50 |
} |
| 51 |
.fixed-bottom-menu-item a { |
| 52 |
display: block; |
| 53 |
padding-bottom: env(safe-area-inset-bottom); |
| 54 |
text-decoration: none; |
| 55 |
} |
| 56 |
|