mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
108 lines
2.3 KiB
CSS
108 lines
2.3 KiB
CSS
/*
|
|
Copyright (c) Microsoft Corporation.
|
|
|
|
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.
|
|
*/
|
|
|
|
:root {
|
|
--toolbar-bg-color: #fafafa;
|
|
--toolbar-color: #555;
|
|
|
|
--light-background: #f3f2f1;
|
|
--background: #edebe9;
|
|
--active-background: #333333;
|
|
--color: #252423;
|
|
--red: #F44336;
|
|
--green: #367c39;
|
|
--purple: #9C27B0;
|
|
--yellow: #ff9207;
|
|
--white: #FFFFFF;
|
|
--blue: #0b7ad5;
|
|
--transparent-blue: #2196F355;
|
|
--orange: #d24726;
|
|
--black: #1E1E1E;
|
|
--light-gray: #BBBBBB;
|
|
--gray: #888888;
|
|
--separator: #80808059;
|
|
--focus-ring: #0E639CCC;
|
|
--inactive-focus-ring: #80808059;
|
|
--layout-gap: 10px;
|
|
--selection: #074771;
|
|
--control-background: #3C3C3C;
|
|
--settings: #E7E7E7;
|
|
--sidebar-width: 250px;
|
|
--light-pink: #ff69b460;
|
|
--network-content-bg: #dcdcdb;
|
|
--box-shadow: rgba(0, 0, 0, 0.133) 0px 1.6px 3.6px 0px, rgba(0, 0, 0, 0.11) 0px 0.3px 0.9px 0px;
|
|
--monospace-font: "SF Mono", Monaco, Consolas, "Droid Sans Mono", Inconsolata, "Courier New",monospace;
|
|
}
|
|
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
display: flex;
|
|
overscroll-behavior-x: none;
|
|
}
|
|
|
|
#root {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
}
|
|
|
|
body {
|
|
color: var(--color);
|
|
font-size: 14px;
|
|
font-family: SegoeUI-SemiBold-final,Segoe UI Semibold,SegoeUI-Regular-final,Segoe UI,"Segoe UI Web (West European)",Segoe,-apple-system,BlinkMacSystemFont,Roboto,Helvetica Neue,Tahoma,Helvetica,Arial,sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
min-width: 0;
|
|
min-height: 0;
|
|
}
|
|
|
|
*[hidden] {
|
|
display: none !important;
|
|
}
|
|
|
|
.invisible {
|
|
visibility: hidden !important;
|
|
}
|
|
|
|
svg {
|
|
fill: currentColor;
|
|
}
|
|
|
|
.vbox {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: auto;
|
|
position: relative;
|
|
}
|
|
|
|
.hbox {
|
|
display: flex;
|
|
flex: auto;
|
|
position: relative;
|
|
}
|
|
|
|
.code {
|
|
font-family: var(--monospace-font);
|
|
color: yellow;
|
|
}
|