Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. * {
  20. -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
  21. }
  22.  
  23. body {
  24. -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
  25. -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
  26. -webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
  27. background-color: #E4E4E4;
  28. font-family: 'HelveticaNeue-Light', 'HelveticaNeue', Helvetica, Arial, sans-serif;
  29. font-size: 12px;
  30. height: 100%;
  31. margin: 0px;
  32. padding: 0px;
  33. text-transform: uppercase;
  34. width: 100%;
  35. }
  36.  
  37. /* Portrait layout (default) */
  38. .app {
  39. position: absolute;
  40. left: 0;
  41. top: 0;
  42. height: 100%; /* text area height */
  43. width: 100%; /* text area width */
  44. text-align: center;
  45. }
  46.  
  47. #map {
  48. height: 300px;
  49. width: 100%;
  50. }
  51.  
  52. /* Landscape layout (with min-width) */
  53. @media screen and (min-aspect-ratio: 1/1) and (min-width: 400px) {
  54. .app {
  55. background-position: left center;
  56. }
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement