GamePanel.module.css 776 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .page {
  2. height: 100%;
  3. width: 100%;
  4. display: flex;
  5. flex-flow: column nowrap;
  6. justify-content: space-between;
  7. align-items: center;
  8. }
  9. .streetview {
  10. height: 100%;
  11. width: 100%;
  12. margin-bottom: 2px;
  13. flex: 3;
  14. position: relative;
  15. }
  16. .fullsize {
  17. height: 100%;
  18. width: 100%;
  19. }
  20. .resetButton {
  21. /* TODO improve this to be less brittle */
  22. display: block;
  23. position: absolute;
  24. z-index: 1;
  25. bottom: 200px;
  26. right: 9px;
  27. background-color: #222;
  28. color: #666;
  29. padding: 5px;
  30. border-radius: 2px;
  31. font-weight: bold;
  32. cursor: pointer;
  33. }
  34. .resetButton:hover {
  35. color: #b1b1b1;
  36. }
  37. @media only screen and (min-width: 600px) and (min-height: 600px) {
  38. .page {
  39. display: block;
  40. position: relative;
  41. margin-bottom: 2px;
  42. margin-right: 2px;
  43. }
  44. }