chrome-devtools-frontend
Version:
Chrome DevTools UI
39 lines (31 loc) • 668 B
CSS
/*
* Copyright 2019 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
body {
margin: 0;
padding: 0;
font-size: 13px;
color: #222;
}
body.platform-linux {
font-family: "Google Sans Text", "Google Sans", system-ui, sans-serif;
}
body.platform-mac {
color: rgb(48 57 66);
font-family: system-ui, sans-serif;
}
body.platform-windows {
font-family: system-ui, sans-serif;
}
.fill {
position: absolute;
inset: 0;
}
#canvas {
pointer-events: none;
}
.hidden {
display: none ; /* stylelint-disable-line declaration-no-important */
}