scratch-vm/playground/playground.css

90 lines
1.6 KiB
CSS
Raw Normal View History

body {
background: rgb(36,36,36);
}
textarea {
resize: none;
}
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: 1%;
bottom: 0;
width: 35%;
}
#blockexplorer, #threadexplorer, #importexport {
position: absolute;
height: 75%;
overflow: scroll;
border: 1px solid #fff;
background: rgb(36,36,36);
color: rgb(217,217,217);
font-family: monospace;
font-size: 10pt;
width: 480px;
height: 360px;
}
#tab-blockexplorer, #tab-threadexplorer, #tab-importexport {
display: none;
}
2016-09-02 08:41:12 -04:00
#importExport {
width: 480px;
2016-09-02 08:41:12 -04:00
height: 360px;
background: rgb(36,36,36);
color: rgb(217,217,217);
font-family: monospace;
font-size: 10pt;
}
#projectId {
background: rgb(36,36,36);
color: rgb(217,217,217);
font-family: monospace;
font-size: 10pt;
}
ul {
display: block;
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
rendererTop {
display: block;
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #696969;
width: 480px;
}
rendererButtons {
float: right;
padding: 12px;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* Change the link color to #111 (black) on hover */
li a:hover {
background-color: #111;
}