UNPKG

framework7

Version:

Full featured mobile HTML framework for building iOS & Android apps

123 lines (116 loc) 3.04 kB
/*==================== Core ==================== */ :root { --f7-safe-area-left: 0px; --f7-safe-area-right: 0px; --f7-safe-area-top: 0px; --f7-safe-area-bottom: 0px; --f7-safe-area-outer-left: 0px; --f7-safe-area-outer-right: 0px; @supports (left: env(safe-area-inset-left)) { --f7-safe-area-top: env(safe-area-inset-top); --f7-safe-area-bottom: env(safe-area-inset-bottom); .ios-left-edge, .ios-edges, .safe-area-left, .safe-areas, .popup, .sheet-modal, .panel-left { --f7-safe-area-left: env(safe-area-inset-left); --f7-safe-area-outer-left: env(safe-area-inset-left); } .ios-right-edge, .ios-edges, .safe-area-right, .safe-areas, .popup, .sheet-modal, .panel-right { --f7-safe-area-right: env(safe-area-inset-right); --f7-safe-area-outer-right: env(safe-area-inset-right); } .no-safe-areas, .no-safe-area-left, .no-ios-edges, .no-ios-left-edge { --f7-safe-area-left: 0px; --f7-safe-area-outer-left: 0px; } .no-safe-areas, .no-safe-area-right, .no-ios-edges, .no-ios-right-edge { --f7-safe-area-right: 0px; --f7-safe-area-outer-right: 0px; } } --f7-device-pixel-ratio: 1; @media (min-resolution: 2dppx) { --f7-device-pixel-ratio: 2; } @media (min-resolution: 3dppx) { --f7-device-pixel-ratio: 3; } } /*==================== Fonts & Bars ==================== */ :root { --f7-font-size: 14px; --f7-bars-translucent-opacity: 0.8; --f7-bars-translucent-blur: 20px; } .ios-vars({ --f7-font-family: -apple-system, SF Pro Text, SF UI Text, system-ui, Helvetica Neue, Helvetica, Arial, sans-serif; --f7-line-height: 1.4; /* --f7-bars-link-color: var(--f7-theme-color); */ .light-vars({ --f7-bars-text-color: #000; --f7-text-color: #000; --f7-bars-bg-color: #f7f7f8; --f7-bars-bg-color-rgb: 247, 247, 248; --f7-bars-border-color: rgba(0,0,0,0.25); }); .dark-vars({ --f7-bars-text-color: #fff; --f7-text-color: #fff; --f7-bars-bg-color: #121212; --f7-bars-bg-color-rgb: 22, 22, 22; --f7-bars-border-color: rgba(255,255,255,0.16); }); }); .md-vars({ --f7-font-family: Roboto, system-ui, Noto, Helvetica, Arial, sans-serif; --f7-line-height: 1.5; --f7-bars-border-color: transparent; .light-vars({ --f7-text-color: #212121; }); .dark-vars({ --f7-text-color: rgba(255,255,255,0.87); }); }); .md-color-vars({ --f7-bars-link-color: var(--f7-md-on-surface); --f7-bars-bg-color: var(--f7-md-surface-2); --f7-bars-bg-color-rgb: var(--f7-md-surface-2-rgb); }); /*==================== Color Themes ==================== */ .text-color-primary { --f7-theme-color-text-color: var(--f7-theme-color); } .bg-color-primary { --f7-theme-color-bg-color: var(--f7-theme-color); } .border-color-primary { --f7-theme-color-border-color: var(--f7-theme-color); } .ripple-color-primary { --f7-theme-color-ripple-color: rgba(var(--f7-theme-color-rgb), 0.3); }