2021-01-08 01:15:34 +01:00
/ *
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 {
2021-02-13 03:53:46 +01:00
--toolbar-bg-color : # fafafa ;
2021-03-11 20:22:59 +01:00
--toolbar-color : # 555 ;
2021-02-13 03:53:46 +01:00
2021-01-08 01:15:34 +01:00
--light-background : # f3f2f1 ;
--background : # edebe9 ;
--active-background : # 333333 ;
--color : # 252423 ;
--red : # F44336 ;
2021-10-18 05:58:06 +02:00
--green : # 367c39 ;
2021-01-08 01:15:34 +01:00
--purple : # 9C27B0 ;
2021-10-18 05:58:06 +02:00
--yellow : # ff9207 ;
2021-01-26 20:06:05 +01:00
--white : # FFFFFF ;
2021-03-11 20:22:59 +01:00
--blue : # 0b7ad5 ;
2021-01-16 03:30:55 +01:00
--transparent-blue : # 2196F355 ;
2021-01-08 01:15:34 +01:00
--orange : # d24726 ;
--black : # 1E1E1E ;
2021-04-20 04:50:11 +02:00
--light-gray : # BBBBBB ;
2021-01-08 01:15:34 +01:00
--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 ;
2021-01-26 20:06:05 +01:00
--network-content-bg : # dcdcdb ;
2021-01-08 01:15:34 +01:00
--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 ;
2021-01-28 18:33:20 +01:00
--monospace-font : "SF Mono" , Monaco , Consolas , "Droid Sans Mono" , Inconsolata , "Courier New" , monospace ;
2021-01-08 01:15:34 +01:00
}
html , body {
width : 100 % ;
height : 100 % ;
padding : 0 ;
margin : 0 ;
overflow : hidden ;
display : flex ;
overscroll-behavior-x : none ;
}
2021-01-21 17:29:01 +01:00
# 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 ;
}
2021-01-08 01:15:34 +01:00
* {
box-sizing : border-box ;
min-width : 0 ;
min-height : 0 ;
}
* [ hidden ] {
display : none ! important ;
}
2021-02-26 23:16:32 +01:00
. invisible {
visibility : hidden ! important ;
}
2021-01-08 01:15:34 +01:00
svg {
fill : currentColor ;
}
. vbox {
display : flex ;
flex-direction : column ;
flex : auto ;
position : relative ;
}
. hbox {
display : flex ;
flex : auto ;
position : relative ;
}
2021-02-05 23:24:27 +01:00
. code {
font-family : var ( --monospace-font ) ;
color : yellow ;
}