| // Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| |
| html, |
| body { |
| margin: 0; |
| padding: 0; |
| height: 100%; |
| width: 100%; |
| overflow: hidden; |
| box-sizing: border-box; |
| } |
| |
| *, *:before, *:after { |
| box-sizing: inherit; |
| } |
| |
| body { |
| display: flex; |
| flex-direction: column; |
| -webkit-overflow-scrolling: touch; |
| } |
| |
| body { |
| -webkit-text-size-adjust: 100%; |
| overflow-x: hidden; |
| font-family: Roboto, sans-serif; |
| font-size: 16px; |
| line-height: 1.42857143; |
| color: var(--main-text-color); |
| background-color: var(--main-bg-color); |
| } |
| |
| main { |
| flex: 1; |
| display: flex; |
| flex-direction: row; |
| min-height: 0; |
| } |