1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
.gadget-tabs-content-container {
background: #fcfcfc;
width: 50%;
border-right: 1px solid #eee;
}
.gadget-tabs-container {
z-index: 2;
}
.gadget-container {
background: #FFFFFF;
}
#codeArea {
font-size: 16px;
}
#codeArea .shiny-input-container {
width: 100%;
}
#code {
margin-top: 10px;
}
#plotArea {
position: absolute;
right: 0;
z-index: 1;
top: 185px;
width: 50%;
}
#plotErrorOut {
padding: 10px;
color: red;
}
#plotError {
margin-left: 15px;
}
#plot-container {
position: relative;
}
#plot-spinner {
position: absolute;
left: 50%;
top: 50%;
z-index: -1;
margin-top: -33px; /* half of the spinner's height */
margin-left: -33px; /* half of the spinner's width */
}
#plot.recalculating {
z-index: -2;
}
|