generated from Integry/Template_NetMauiBlazorHybrid
97 lines
2.2 KiB
CSS
97 lines
2.2 KiB
CSS
.animated-navbar {
|
|
background: transparent;
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
z-index: 1001;
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
.animated-navbar.show-nav { transform: translateY(0); }
|
|
|
|
.animated-navbar.hide-nav { transform: translateY(100%); }
|
|
|
|
.animated-navbar.with-plus { margin-left: 30px; }
|
|
|
|
.navbar {
|
|
padding-bottom: 1rem;
|
|
padding-top: 0 !important;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: end;
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
.navbar.with-plus { transform: translateX(-30px); }
|
|
|
|
.navbar.without-plus {
|
|
transform: translateX(0);
|
|
justify-content: center;
|
|
}
|
|
|
|
.container-navbar {
|
|
background: var(--mud-palette-surface);
|
|
border-radius: 50px;
|
|
padding: 0 10px;
|
|
box-shadow: var(--custom-box-shadow);
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
.nav-item { font-size: 0.9rem; }
|
|
|
|
.nav-item.plus-button {
|
|
position: relative;
|
|
bottom: 15px;
|
|
}
|
|
|
|
.navbar ::deep .custom-plus-button .mud-icon-root {
|
|
transition: .5s;
|
|
transform: rotate(0);
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.navbar ::deep .custom-plus-button {
|
|
background: var(--mud-palette-surface);
|
|
box-shadow: var(--custom-box-shadow);
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
.navbar ::deep .custom-plus-button:focus .mud-icon-root { transform: rotate(225deg); }
|
|
|
|
.nav-item ::deep a {
|
|
display: flex;
|
|
align-items: center;
|
|
line-height: 1.2;
|
|
justify-content: center;
|
|
padding-top: .25rem !important;
|
|
padding-bottom: .25rem !important;
|
|
}
|
|
|
|
.nav-item ::deep a > div {
|
|
-webkit-transition: all .1s ease-out;
|
|
transition: all .1s ease-out;
|
|
min-width: 75px;
|
|
}
|
|
|
|
.nav-item ::deep a.active > div { color: var(--mud-palette-primary); }
|
|
|
|
.nav-item ::deep a.active > div > i {
|
|
/*background-color: color-mix(in srgb, var(--mud-palette-primary) 20%, transparent);*/
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.nav-item ::deep a.active > div > span { font-weight: 800; }
|
|
|
|
.nav-item ::deep a:not(.active) > div {
|
|
color: var(--mud-palette-text-primary);
|
|
}
|
|
|
|
.nav-item ::deep a i { font-size: 1.65rem; }
|
|
|
|
.nav-item ::deep a span {
|
|
font-size: 0.8rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
@supports (-webkit-touch-callout: none) { .navbar { padding-bottom: env(safe-area-inset-bottom); } } |