gobot.css 798 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #page-wrapper {
  2. margin-left: 0px;
  3. margin-top: 50px; /* this is because of the fixed menu */
  4. background-color: #f8f8f8; /* this should be already set but for some reason reverts to white?! */
  5. position: relative;
  6. }
  7. #map {
  8. width: 100%;
  9. height: 512px;
  10. border: 1px solid #ccc;
  11. margin-top: 10px;
  12. margin-bottom: 10px;
  13. }
  14. .avatar {
  15. border-radius: 50%;
  16. -webkit-border-radius: 50%;
  17. /* height: 32px; */ /* height changes depending on avatar size shown (201700617) */
  18. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  19. }
  20. #engineResponse {
  21. overflow-y: scroll;
  22. height:400px;
  23. }
  24. /* stick navigation bar to the top */
  25. .navbar {
  26. position: fixed;
  27. top: 0;
  28. width: 100%;
  29. z-index: 999;
  30. }
  31. /* Place Gravatar Hovercards over everything else */
  32. .gcard {
  33. z-index: 1000;
  34. }
  35. .emptyPlaceholder {
  36. z-index: 1000;
  37. }