/* This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /* Created on : Apr 3, 2020, 11:55:50 AM Author : Skylar Ittner */ .only-tablet { display: none; } @media all and (min-width: 768px) { .only-tablet { display: inherit; } .no-tablet { display: none; } .page.tabbed .tabbar { /* Remove tab switcher at bottom of page */ display: none; height: 0; } .page.tabbed .tabs { /* Put tabs next to each other */ display: flex; } .page.tabbed .tabs .tab { /* un-hide "non-active" tabs */ display: block; /* Make FABs stay where they should */ position: relative; } .page.tabbed .tabs .tab.tab-67 { width: 66.67% !important; } .page.tabbed .tabs .tab.tab-33 { width: 33.33% !important; } .page.tabbed .page-content { padding-top: 0; padding-bottom: 0; } .elevation-tablet { /* .elevation-3 */ box-shadow: var(--f7-elevation-3)!important; } .page.tabbed .tabs .tab:not(:first-child) { /*box-shadow: inset 5px 0 9px -5px rgba(0,0,0,0.3);*/ border-left: 1px solid rgba(0,0,0,0.1); } .page.tabbed .fab { margin-bottom: 0; } .sheet-backdrop.backdrop-in { visibility: hidden; } .padding-bottom-tablet { padding-bottom: 3rem !important; } #mapbox { height: calc(100% - var(--f7-navbar-height)); } } @media all and (min-width: 768px) and (min-height: 700px) { .margin-top-tablet { margin-top: 1rem; } }