12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- .navbar {
- margin-bottom: 0px;
- }
- .button {
- position: absolute;
- right: 10px;
- width: 36px;
- text-align: center;
- overflow: hidden;
- height: 36px;
- padding: 0;
- cursor: pointer;
- border-radius: 6px 0 0 6px;
- font-size: 1.5em;
- line-height: 36px;
- box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
- background: #fff;
- border-radius: 5px;
- z-index: 1000;
- }
- .touch .button {
- border: 2px solid rgba(0, 0, 0, 0.2) !important;
- box-shadow: none;
- width: 48px;
- height: 48px;
- line-height: 44px;
- background-clip: padding-box;
- }
- #searchform {
- position: absolute;
- right: 55px;
- top: 60px;
- width: 300px;
- z-index: 910;
- }
- #sidebar>div {
- padding: 1em;
- }
- #sidebar {
- width: 380px;
- position: absolute;
- background-color: rgba(255, 255, 255, 0.8);
- top: 0px;
- right: 0px;
- height: 100%;
- -webkit-transition: width 0.3s;
- -moz-transition: width 0.3s;
- -o-transition: width 0.3s;
- transition: width 0.3s;
- max-width: 100%;
- display: inline;
- z-index: 900;
- overflow: auto;
- }
- #sidebar_button {
- top: 100px;
- }
- .touch #sidebar_button {
- top: 100px;
- }
- #geosearch_button {
- top: 150px;
- }
- .touch #geosearch_button {
- top: 150px;
- }
- #reload_button {
- top: 200px;
- }
- .touch #reload_button {
- top: 200px;
- }
- #live_button {
- top: 250px;
- }
- .touch #live_button {
- top: 250px;
- }
|