cesium/packages/widgets/Source/NavigationHelpButton/NavigationHelpButton.css

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

115 lines
2.0 KiB
CSS
Raw Permalink Normal View History

2014-04-16 22:40:39 +08:00
.cesium-navigationHelpButton-wrapper {
position: relative;
2014-04-24 02:44:24 +08:00
display: inline-block;
2014-04-16 22:40:39 +08:00
}
.cesium-navigation-help {
visibility: hidden;
position: absolute;
2014-04-24 02:44:24 +08:00
top: 38px;
right: 2px;
2014-04-17 02:36:27 +08:00
width: 250px;
2014-04-16 22:40:39 +08:00
border-radius: 10px;
transform: scale(0.01);
2014-04-17 02:36:27 +08:00
transform-origin: 234px -10px;
2014-04-16 22:40:39 +08:00
transition:
visibility 0s 0.25s,
transform 0.25s ease-in;
}
.cesium-navigation-help-visible {
2014-07-11 05:51:01 +08:00
visibility: visible;
transform: scale(1);
transition: transform 0.25s ease-out;
2014-07-11 05:51:01 +08:00
}
2014-07-15 03:40:55 +08:00
.cesium-navigation-help-instructions {
border: 1px solid #444;
background-color: rgba(38, 38, 38, 0.75);
padding-bottom: 5px;
border-radius: 0 0 10px 10px;
}
.cesium-click-navigation-help {
display: none;
}
.cesium-touch-navigation-help {
display: none;
2014-07-15 04:07:29 +08:00
padding-top: 5px;
}
.cesium-click-navigation-help-visible {
display: block;
}
2014-07-11 05:51:01 +08:00
.cesium-touch-navigation-help-visible {
display: block;
2014-04-16 22:40:39 +08:00
}
.cesium-navigation-help-pan {
color: #66ccff;
font-weight: bold;
}
.cesium-navigation-help-zoom {
color: #65fd00;
font-weight: bold;
}
.cesium-navigation-help-rotate {
color: #ffd800;
font-weight: bold;
}
2014-07-12 02:16:53 +08:00
.cesium-navigation-help-tilt {
color: #d800d8;
font-weight: bold;
}
2014-04-16 22:40:39 +08:00
.cesium-navigation-help-details {
color: #ffffff;
}
2014-07-15 03:40:55 +08:00
.cesium-navigation-button {
color: #fff;
background-color: transparent;
border-bottom: none;
border-top: 1px solid #444;
border-right: 1px solid #444;
margin: 0;
2014-07-15 04:07:29 +08:00
width: 50%;
cursor: pointer;
2014-07-15 03:40:55 +08:00
}
.cesium-navigation-button-icon {
vertical-align: middle;
2014-07-15 04:07:29 +08:00
padding: 5px 1px;
2014-07-15 03:40:55 +08:00
}
.cesium-navigation-button:focus {
outline: none;
}
.cesium-navigation-button-left {
border-radius: 10px 0 0 0;
border-left: 1px solid #444;
}
.cesium-navigation-button-right {
border-radius: 0 10px 0 0;
border-left: none;
}
.cesium-navigation-button-selected {
background-color: rgba(38, 38, 38, 0.75);
}
.cesium-navigation-button-unselected {
background-color: rgba(0, 0, 0, 0.75);
2014-07-15 04:07:29 +08:00
}
.cesium-navigation-button-unselected:hover {
background-color: rgba(76, 76, 76, 0.75);
}