Нема описа
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718
  1. /* CSS Document */
  2. div#map-canvas {
  3. margin: 0;
  4. padding: 0;
  5. height: 600px; /* 高さ */
  6. width: 640px; /* 幅 */
  7. }
  8. /* map-canvas レスポンシブ対応 */
  9. @media screen and (max-width: 768px) {
  10. div#map-canvas {
  11. margin: 0;
  12. padding: 0;
  13. height: 450px; /* 高さ */
  14. width: 100%; /* 幅 */
  15. }
  16. }