/* * Copyright 2016 balena.io * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ @font-face { font-family: "SourceSansPro"; src: url("./fonts/SourceSansPro-Regular.ttf") format("truetype"); font-weight: 500; font-style: normal; } @font-face { font-family: "SourceSansPro"; src: url("./fonts/SourceSansPro-SemiBold.ttf") format("truetype"); font-weight: 600; font-style: normal; } html, body { margin: 0; overflow: hidden; /* Prevent white flash when running application */ background-color: #4d5057; /* Prevent WebView bounce effect in OS X */ height: 100%; width: 100%; } /* Prevent text selection */ body { -webkit-user-select: none; -webkit-overflow-scrolling: touch; } /* Prevent blue outline */ a:focus, input:focus, button:focus, [tabindex]:focus, input[type="checkbox"] + div { outline: none !important; box-shadow: none !important; } .disabled { opacity: 0.4; } #rendition-tooltip-root > div { font-family: "SourceSansPro", sans-serif; }