PluginProbe
Fixed Bottom Menu / 1.13
Fixed Bottom Menu v1.13
trunk 1.00 1.01 1.02 1.03 1.04 1.12 1.13 1.14 1.15 1.16 1.17 1.18 1.19 1.20 1.21 1.22 1.23 1.24 1.25 1.26 1.27 1.28 1.29 1.30 All 41 releases
fixed-bottom-menu / css / fixedbottommenu.css

fixedbottommenu.css in Fixed Bottom Menu 1.13, at css/fixedbottommenu.css

43 lines 853 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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