77 lines
1.3 KiB
CSS
77 lines
1.3 KiB
CSS
/*youngtec: #000080, #add8e6*/
|
|
/*default: #4CAF50,#8dc63f*/
|
|
/*Change in engine.css $('body').css('background-color', '#4CAF50');*/
|
|
|
|
#mainNav .active {
|
|
background-color: #4CAF50;
|
|
}
|
|
|
|
#assetCreationNav .active {
|
|
background-color: #4CAF50;
|
|
}
|
|
|
|
#jsonConfigNav .active {
|
|
background-color: #4CAF50;
|
|
}
|
|
|
|
.inputButton {
|
|
background-color: #4CAF50;
|
|
/* Green */
|
|
border: none;
|
|
border-radius: 5px;
|
|
color: white;
|
|
padding: 5px 10px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
font-size: 16px;
|
|
margin: 10px 0px;
|
|
}
|
|
|
|
.dropdown:hover .dropbtn {
|
|
background-color: #4CAF50;
|
|
}
|
|
|
|
.dropbtn {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
font-size: 16px;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
div.jsoneditor-menu {
|
|
width: 100%;
|
|
height: 35px;
|
|
padding: 2px;
|
|
margin: 0;
|
|
-moz-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
color: white;
|
|
background-color: #8dc63f;
|
|
border-bottom: 1px solid #8dc63f;
|
|
}
|
|
|
|
div.jsoneditor {
|
|
color: #1A1A1A;
|
|
border: 1px solid #8dc63f /*#3883fa*/;
|
|
-moz-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
position: relative;
|
|
padding: 0;
|
|
line-height: 100%;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
height: 100%;
|
|
background: #8dc63f;
|
|
}
|
|
|