dat.gui/elements/gui-panel/gui-panel.styl

39 lines
567 B
Stylus
Raw Normal View History

2014-08-16 21:16:02 +00:00
@import '../shared';
#closeButton {
2014-08-23 07:05:22 +00:00
panel-font()
color: text-color;
// font-size: 14px;
2014-08-16 21:16:02 +00:00
cursor: pointer;
text-align: center;
2014-08-23 07:05:22 +00:00
padding: padding * 0.75 padding;
background: black;
2014-08-21 17:20:06 +00:00
}
#container {
2014-08-23 07:05:22 +00:00
background: panel-color;
&.autoplace-true {
width: panel-width;
position: fixed;
top: 0;
}
2014-08-21 17:20:06 +00:00
&.docked-false {
right: 20px;
}
&.docked-true {
right: 0;
bottom: 0;
2014-08-23 07:05:22 +00:00
overflow: auto;
2014-08-21 17:20:06 +00:00
}
2014-08-23 07:05:22 +00:00
transition: transform 0.4s cubic-bezier( 0, 0.8, 0, 1 );
2014-08-21 17:20:06 +00:00
}