You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
1.8 KiB
CSS

4 years ago
/*
* Copyright 2020 Netsyms Technologies.
* 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/.
*/
4 years ago
/*
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;
}
4 years ago
/*
4 years ago
.page.tabbed .tabbar {
4 years ago
Remove tab switcher at bottom of page
4 years ago
display: none;
height: 0;
}
.page.tabbed .tabs {
4 years ago
Put tabs next to each other
4 years ago
display: flex;
}
.page.tabbed .tabs .tab {
4 years ago
un-hide "non-active" tabs
4 years ago
display: block;
4 years ago
Make FABs stay where they should
4 years ago
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;
4 years ago
}*/
4 years ago
.elevation-tablet {
/* .elevation-3 */
box-shadow: var(--f7-elevation-3)!important;
}
4 years ago
/*
4 years ago
.page.tabbed .tabs .tab:not(:first-child) {
4 years ago
box-shadow: inset 5px 0 9px -5px rgba(0,0,0,0.3);
4 years ago
border-left: 1px solid rgba(0,0,0,0.1);
4 years ago
}*/
/*
4 years ago
.page.tabbed .fab {
margin-bottom: 0;
}
.sheet-backdrop.backdrop-in {
visibility: hidden;
4 years ago
}*/
4 years ago
.padding-bottom-tablet {
padding-bottom: 3rem !important;
}
4 years ago
/*
4 years ago
#mapbox {
height: calc(100% - var(--f7-navbar-height));
4 years ago
}*/
4 years ago
}
@media all and (min-width: 768px) and (min-height: 700px) {
.margin-top-tablet {
margin-top: 1rem;
}
}