r3-editor/webroot/css/style.css

220 lines
3.9 KiB
CSS
Raw Permalink Normal View History

2019-10-12 16:06:18 +02:00
html {
height:100%;
}
2019-10-04 11:27:45 +02:00
body {
color:#666666;
2019-10-16 21:03:20 +02:00
background-color:#000000!important;
2019-10-12 16:06:18 +02:00
height:100%;
width:100%;
padding:0;
2019-10-04 11:27:45 +02:00
}
2019-10-28 12:03:59 +01:00
.compiled {
box-shadow: 0px 0px 20px 0px #2be02b;
}
.uncompiled {
box-shadow: 0px 0px 20px 0px #e02b2b;
}
2019-10-16 12:39:36 +02:00
.bg-dark-trans {
background-color: #343a40ad;
}
2019-10-12 16:06:18 +02:00
2019-10-24 09:28:05 +02:00
.bg-dark-control {
background-color: #404040;
}
.navbar-dark .navbar-nav .nav-link {
color: rgba(197, 197, 197, 0.98);
}
2019-10-16 12:39:36 +02:00
select {
2019-10-24 09:28:05 +02:00
background-color: #272727;
border-color: #1f1f1f;
2019-10-16 12:39:36 +02:00
}
2019-10-24 09:28:05 +02:00
canvas.project {
2019-10-16 21:03:20 +02:00
box-shadow: 0px 0 20px 0px #7dff9987;
2019-10-16 12:39:36 +02:00
border: 2px transparent solid;
margin: 8px;
}
2019-10-24 09:28:05 +02:00
canvas.project:focus,
canvas.project:active
2019-10-16 12:39:36 +02:00
{
outline: unset;
border: 2px #b2dab2 solid;
}
2019-10-24 09:28:05 +02:00
.dg {
width:400px;
}
.div-header {
display:flex;
flex-direction: column;
width: 100%;
}
.div-gui {
z-index:1;
}
2019-10-16 21:03:20 +02:00
.div-mobile {
background-image: url(https://api.r3js.org/iphone-template.png);
background-repeat: no-repeat;
background-position: center;
height: 883px;
display: flex;
justify-content: center;
align-items: center;
background-size: contain;
width: 451px;
}
2019-10-24 09:28:05 +02:00
.div-mobile-vr {
background-image: url(https://api.r3js.org/iphone-template-landscape.png);
background-repeat: no-repeat;
background-position: center;
height: 451px;
display: flex;
justify-content: center;
align-items: center;
background-size: contain;
width: 883px;
}
2019-10-16 12:39:36 +02:00
.div-menu {
position: fixed;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
top: 10%;
left: 10%;
width: 80%;
height: 80%;
z-index: 2;
box-shadow: 0px 0 8px 8px #7dff9987;
background-color: #1a1a1acc;
color: #fff;
}
2019-10-12 16:06:18 +02:00
.button:hover {
2019-10-16 12:39:36 +02:00
box-shadow: 0px 0px 10px 10px #7dff99;
2019-10-04 11:27:45 +02:00
}
2019-10-12 16:06:18 +02:00
.button:focus {
outline:unset;
2019-10-16 12:39:36 +02:00
border: 2px #b2dab2 solid;
2019-10-04 11:27:45 +02:00
}
2019-10-12 16:06:18 +02:00
.button {
transition: box-shadow 0.5s;
border: 2px transparent solid;
margin-top: 20px;
border-radius: 18px;
2019-10-16 12:39:36 +02:00
box-shadow: 0 0 10px 0px #7dff99;
2019-10-12 16:06:18 +02:00
background-color: transparent;
color: #fff;
padding: 5px 10px 5px 10px;
2019-10-04 11:27:45 +02:00
}
2019-10-12 16:06:18 +02:00
.button-menu:focus {
outline:unset;
2019-10-16 12:39:36 +02:00
border: 2px #b2dab2 solid;
2019-10-04 11:27:45 +02:00
}
2019-10-12 16:06:18 +02:00
.button-menu:hover {
2019-10-16 21:03:20 +02:00
box-shadow: 0px 0px 6px 3px #009e22f7;
color: #00a523c2;
2019-10-04 11:27:45 +02:00
}
2019-10-12 16:06:18 +02:00
.button-menu:disabled {
2019-10-16 21:03:20 +02:00
color: #7b4a4aa1;
box-shadow: 0 0 10px 0px #840000c9;
2019-10-04 11:27:45 +02:00
}
2019-10-12 16:06:18 +02:00
2019-10-24 09:28:05 +02:00
.button-menu-bak {
2019-10-16 12:39:36 +02:00
border: 2px #ffffff00 solid;
transition: box-shadow 0.5s, border 0.5s, color 0.5s;
height: 35px;
background-color: transparent;
color: #a9a6a6;
2019-10-16 21:03:20 +02:00
box-shadow: 0 0 6px 2px #0f521d73;
2019-10-16 12:39:36 +02:00
margin-left: 7px;
margin-right: 7px;
border-radius: 15px;
}
2019-10-24 09:28:05 +02:00
.button-menu {
border: 2px #ffffff00 solid;
transition: box-shadow 0.5s, border 0.5s, color 0.5s;
height: 35px;
background-color: transparent;
color: #96b795;
box-shadow: 0 0 6px 2px #6dff8b73;
margin-left: 7px;
margin-right: 7px;
border-radius: 0px;
}
2019-10-16 12:39:36 +02:00
.button-menu-light {
2019-10-12 16:06:18 +02:00
border: 2px transparent solid;
transition: box-shadow 0.5s, border 0.5s;
height: 35px;
background-color: transparent;
color: #7b7b7b;
box-shadow: 2px 3px 7px 0px #012300a3;
margin-left: 7px;
margin-right: 7px;
border-radius: 15px;
}
.div-main {
height:100%;
2019-10-16 21:03:20 +02:00
width:100%;
2019-10-12 16:06:18 +02:00
padding:0;
background-color: #000000ad;
}
2019-10-16 12:39:36 +02:00
.div-workarea {
padding-top: 2.5%;
overflow-y: auto;
2019-10-12 16:06:18 +02:00
color: #fff;
display: flex;
justify-content: center;
align-items: center;
2019-10-16 21:03:20 +02:00
background-color: #00b5ff3b;
flex-wrap: wrap;
2019-10-12 16:06:18 +02:00
height: 100%;
top: 0;
left: 0;
position: fixed;
width: 100%;
}
2019-10-24 09:28:05 +02:00
/* Code Mirror Style */
.CodeMirror {
z-index: 10000;
background-color: rgba(210, 210, 210, 0.5);
top: 100px;
2019-10-28 12:03:59 +01:00
border-radius: 15px;
2019-10-24 09:28:05 +02:00
height: max-content;
width: 90%;
left: 5%;
}
.CodeMirror-scroll {
max-height: 680px;
}
.CodeMirror-overlayscroll-vertical div {
background: #1DC116;
}
2019-10-12 16:06:18 +02:00
2019-10-24 09:28:05 +02:00
.cm-s-darcula.CodeMirror {
background: #2b2b2b91;
}