12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- .page {
- height: 100%;
- width: 100%;
- display: flex;
- flex-flow: column nowrap;
- justify-content: space-between;
- align-items: center;
- }
- .streetview {
- height: 100%;
- width: 100%;
- margin-bottom: 2px;
- flex: 3;
- position: relative;
- }
- .fullsize {
- height: 100%;
- width: 100%;
- }
- .resetButton {
- /* TODO improve this to be less brittle */
- display: block;
- position: absolute;
- z-index: 1;
- bottom: 200px;
- right: 9px;
- background-color: #222;
- color: #666;
- padding: 5px;
- border-radius: 2px;
- font-weight: bold;
- cursor: pointer;
- }
- .resetButton:hover {
- color: #b1b1b1;
- }
- @media only screen and (min-width: 600px) and (min-height: 600px) {
- .page {
- display: block;
- position: relative;
- margin-bottom: 2px;
- margin-right: 2px;
- }
- }
|