mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 06:23:37 -05:00
37 lines
627 B
CSS
37 lines
627 B
CSS
body {
|
|
background: rgb(36,36,36);
|
|
}
|
|
a {
|
|
color: rgb(217,217,217);
|
|
}
|
|
#blocks {
|
|
position: absolute;
|
|
left: 40%;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
#vm-devtools {
|
|
color: rgb(217,217,217);
|
|
position: absolute;
|
|
left: 1%;
|
|
right: 60%;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 35%;
|
|
}
|
|
#blockexplorer, #threadexplorer {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 75%;
|
|
overflow: scroll;
|
|
border: 1px solid #fff;
|
|
background: rgb(36,36,36);
|
|
color: rgb(217,217,217);
|
|
font-family: monospace;
|
|
font-size: 10pt;
|
|
}
|
|
|
|
#tab-blockexplorer, #tab-threadexplorer {
|
|
display: none;
|
|
}
|