dat.gui/gui.css

62 lines
1.2 KiB
CSS
Raw Normal View History

2011-01-23 23:43:02 +00:00
#guidat {
2011-01-24 00:21:36 +00:00
font: 12px Helvetica, Arial, 'sans-serif';
position: fixed;
width: 250px;
z-index: 200;
opacity: 0.95;
top: 0;
left: 100%;
margin-left: -270px;
2011-01-24 00:50:14 +00:00
background-color: #fff;
2011-01-24 00:21:36 +00:00
-moz-transition: margin-top .2s ease-out;
-webkit-transition: margin-top .2s ease-out;
transition: margin-top .2s ease-out;
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
2011-01-24 00:50:14 +00:00
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
2011-01-23 23:43:02 +00:00
}
#guidat-controllers {
2011-01-24 00:21:36 +00:00
height: 300px;
2011-01-24 00:50:14 +00:00
overflow-y: auto;
background-color: #eee;
2011-01-23 23:43:02 +00:00
}
#guidat-toggle {
2011-01-24 00:21:36 +00:00
text-decoration: none;
cursor: pointer;
font-weight: bold;
color: #fff;
background-color: #222;
text-align: center;
display: block;
padding: 5px;
}
#guidat-toggle:hover {
background-color: #000;
2011-01-24 00:50:14 +00:00
}
.guidat-controller {
padding: 5px;
border-bottom: 1px solid #ccc;
text-align: right;
background-color: #fff;
}
.guidat-controller:nth-child(even) {
background-color: #E1F9FF;
}
.guidat-controller:last-child {
border-bottom: 1px solid #ccc;
-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.guidat-propertyname {
float: left;
margin: 5px;
font-size: 11px;
2011-01-23 23:43:02 +00:00
}