Files

54 lines
1.3 KiB
CSS

/**
* Copyright 2011 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @author [email protected]
* @license Apache License, Version 2.0.
*/
#xh-bar {
border-width: 0 !important;
position: fixed !important;
top: 0 !important;
left: 0 !important;
width: 100% !important;
height: 120px !important; /* bar.css body height */
z-index: 2147483647 !important;
transform: translate3d(0, 0, 0) !important;
transition: transform 0.2s ease-out !important;
}
#xh-bar.bottom {
top: auto !important;
bottom: 0 !important;
}
#xh-bar.hidden {
transform: translate3d(0, -100%, 0) !important;
}
#xh-bar.hidden.bottom {
transform: translate3d(0, 100%, 0) !important;
}
.xh-highlight {
background-color: #fff59d !important;
}
img.xh-highlight {
opacity: 0.5 !important;
}