dat.gui/src/DAT/GUI/GUI.css

169 lines
2.9 KiB
CSS
Raw Normal View History

#guidat {
position: fixed;
top: 0;
right: 0;
width: auto;
z-index: 1001;
text-align: right;
2011-02-01 03:06:34 +00:00
}
.guidat {
color: #fff;
opacity: 0.97;
text-align: left;
float: right;
margin-right: 20px;
margin-bottom: 20px;
background-color: #fff;
2011-01-23 23:43:02 +00:00
}
2011-01-30 23:03:09 +00:00
.guidat,
.guidat input {
font: 9.5px Lucida Grande, sans-serif;
2011-01-25 07:43:32 +00:00
}
.guidat-controllers {
height: 300px;
overflow-y: auto;
overflow-x: hidden;
background-color: rgba(0, 0, 0, 0.1);
2011-01-23 23:43:02 +00:00
}
a.guidat-toggle:link,
a.guidat-toggle:visited,
a.guidat-toggle:active {
text-decoration: none;
cursor: pointer;
color: #fff;
background-color: #222;
text-align: center;
display: block;
padding: 5px;
2011-01-25 07:43:32 +00:00
2011-01-24 00:21:36 +00:00
}
a.guidat-toggle:hover {
background-color: #000;
2011-01-24 00:50:14 +00:00
}
.guidat-controller {
padding: 3px;
height: 25px;
clear: left;
border-bottom: 1px solid #222;
background-color: #111;
2011-01-24 02:59:29 +00:00
}
2011-01-24 21:21:21 +00:00
2011-01-25 22:24:35 +00:00
.guidat-controller,
.guidat-controller input,
.guidat-slider-bg,
.guidat-slider-fg {
-moz-transition: background-color 0.15s linear;
-webkit-transition: background-color 0.15s linear;
transition: background-color 0.15s linear;
2011-01-25 22:24:35 +00:00
}
2011-01-24 21:21:21 +00:00
.guidat-controller.boolean:hover,
.guidat-controller.function:hover {
background-color: #000;
2011-01-24 21:21:21 +00:00
}
.guidat-controller input {
float: right;
outline: none;
border: 0;
padding: 4px;
margin-top: 2px;
background-color: #222;
2011-01-24 02:59:29 +00:00
}
.guidat-controller select {
margin-top: 4px;
float: right;
}
.guidat-controller input:hover {
background-color: #444;
}
2011-01-25 09:35:45 +00:00
.guidat-controller input:focus,
.guidat-controller.active input {
background-color: #555;
color: #fff;
}
.guidat-controller.number {
border-left: 5px solid #00aeff;
2011-01-24 02:59:29 +00:00
}
.guidat-controller.string {
border-left: 5px solid #1ed36f;
2011-01-24 21:21:21 +00:00
}
.guidat-controller.string input {
border: 0;
color: #1ed36f;
margin-right: 2px;
width: 148px;
2011-01-24 21:21:21 +00:00
}
.guidat-controller.boolean {
border-left: 5px solid #54396e;
2011-01-24 21:21:21 +00:00
}
.guidat-controller.function {
border-left: 5px solid #e61d5f;
2011-01-24 21:21:21 +00:00
}
.guidat-controller.number input[type=text] {
width: 35px;
margin-left: 5px;
margin-right: 2px;
color: #00aeff;
2011-01-24 22:22:36 +00:00
}
.guidat .guidat-controller.boolean input {
margin-top: 6px;
margin-right: 2px;
font-size: 20px;
2011-01-24 00:50:14 +00:00
}
.guidat-controller:last-child {
border-bottom: none;
-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
2011-01-24 00:50:14 +00:00
}
.guidat-propertyname {
padding: 5px;
padding-top: 7px;
cursor: default;
display: inline-block;
2011-01-25 09:35:45 +00:00
}
.guidat-controller .guidat-slider-bg:hover,
.guidat-controller.active .guidat-slider-bg {
background-color: #444;
}
.guidat-controller .guidat-slider-bg .guidat-slider-fg:hover,
.guidat-controller.active .guidat-slider-bg .guidat-slider-fg {
background-color: #52c8ff;
}
.guidat-slider-bg {
background-color: #222;
cursor: ew-resize;
width: 40%;
margin-top: 2px;
float: right;
height: 21px;
2011-01-25 09:35:45 +00:00
}
.guidat-slider-fg {
cursor: ew-resize;
background-color: #00aeff;
height: 21px;
}